js学习笔记-第一章基本概念-语句

	<script>
		
		//if语句:表判断,判断条件可以是任意表达式;会自动调用Boolean();
		
		if(undefined){
			console.log(123);
		}
		
	</script>
</head>
<body>
</body>

猜你喜欢

转载自blog.csdn.net/Goblin_E/article/details/84502717