JavaScript中双符号的运算详解

时间:2021-05-26

一、双波浪号

var i = 5.1;var j = 5.5;console.log(~~i); // 5console.log(~~j); // 5

作用类似Math.floor。

类似的意思是在处理正数的时候,如果处理负数就它俩就不同了:

~~-5.1 // 5Math.floor(-5.1) // -6~~-5.5 // 5Math.floor(-5.5) // -6

注:

Math.ceil(x)Returns the smallest integer greater than or equal to a number.Math.floor(x)Returns the largest integer less than or equal to a number.~~是向0计算,取值向0靠拢

二、双感叹号

var a = 1;var b = null;var c = '';var d = 'code';console.log(!!a); // trueconsole.log(!!b); // falseconsole.log(!!c); // falseconsole.log(!!d); // true

作用类似Boolean,把值转换为boolean值。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章