从JavaScript中的字符串构造对象的代码

我们需要编写一个函数,该函数将字符串作为第一个也是唯一的参数,并根据字符串的唯一字符和每个键的值默认为0构造一个带有键的对象。

例如:如果输入字符串是-

const str = 'hello world!';

输出结果

那么输出对象应该是-

const obj = { "h": 0, "e": 0, "l": 0, "o": 0, " ": 0, "w": 0, "r": 0, "d": 0, "!": 0 };

示例

让我们为该函数编写代码-

const str = 'hello world!';
const stringToObject = str => {
   return str.split("").reduce((acc, val) => {
      acc[val] = 0;
      return acc;
   }, {});
};
console.log(stringToObject(str));
console.log(stringToObject('is it an object'));

输出结果

控制台中的输出-

{ h: 0, e: 0, l: 0, o: 0, ' ': 0, w: 0, r: 0, d: 0, '!': 0 }
{ i: 0, s: 0, ' ': 0, t: 0, a: 0, n: 0, o: 0, b: 0, j: 0, e: 0, c: 0 }