标签: javascript node.js boolean-logic negation
与标题一样。
let x = anything; if(x){ console.log("True"); } if(!!x){ console.log("True"); }
此处的输出始终为True True?