思考下面 console.log 语句打印内容

思考下面 console.log 语句打印内容

var flag = new Boolean(false);
if(flag) {
    console.log('true');
}else{
    console.log('false');
}

// 答案: true

有趣的代码就在 代码秀

猜你喜欢

转载自blog.csdn.net/qq_27852041/article/details/87861988
今日推荐