欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

0与1和true与false的关系

程序员文章站 2022-05-01 22:51:38
...
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Title</title>
</head>
<body>
<script>
	console.log(true == 1) //true
	console.log(false == 0) //false
	console.log(true === 1) //false
	console.log(false === 0) //false
</script>
</body>
</html>