我们必须编写一个函数,该函数接受具有许多键的对象,并用破折号('-')替换所有错误值。我们将简单地遍历原始对象,检查包含错误值的键,然后将这些错误值替换为'-',而不会占用任何额外空间(即就地)
const obj = { key1: 'Hello', key2: 'World', key3: '', key4: 45, key5: 'can i use arrays', key6: null, key7: 'fast n furious', key8: undefined, key9: '', key10: NaN, }; const swapValue = (obj) => { Object.keys(obj).forEach(key => { if(!obj[key]){ obj[key] = '-'; } }); }; swapValue(obj); console.log(obj);
输出结果
控制台中的输出将为-
{ key1: 'Hello', key2: 'World', key3: '-', key4: 45, key5: 'can i use arrays', key6: '-', key7: 'fast n furious', key8: '-', key9: '-', key10: '-' }