来自JavaScript中字符串的表单对象

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

例如-

// if the input string is:
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 }