JavaScript 中通过字符串构造 Form 对象
我们需要编写一个函数,该函数以一个字符串为第一个也是惟一参数,并根据字符串的唯一字符构造一个对象,且每个键的值都默认为 0。
例如 −
// if the input string is: const str = 'hello world!'; // then the output should be: 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 }
广告