javascript:第四章 數據類型顯示和隱式的轉換

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>無標題文檔</title>

<script>

/*
顯式類型轉換(強制類型轉換):
Number()
parseInt()
parseFloat()

隱式類型轉換:
	+								200 + '3'		變成字符串
	- * / %				'200' - 3     變成數字
	++ --						變成數字
	> < 						數字的比較 、字符串的比較
	!	取反					把右邊的數據類型轉成布爾值
	==
*/

alert( Number([[22],['1']]) );			NaN
// alert( '……'-9 );				//NaN,'……'隱式轉換成NaN/

// alert( '2' == 2 );//true

// alert( '1000' > 9 );//true,隱式類型轉換

// alert( '10' > '9' );//false,1<9...第一位數字的比較!
// 數字的比較與字符串的比較
// '1000000'   '9'

// alert( '2' === 2 );

</script>

</head>

<body>
</body>
</html>
相關文章
相關標籤/搜索