背景:'false', 想要得到的结果是 false let boo = 'false' Boolean(boo) // true !!boo // true // 正解: JSON.parse(boo) // false