doctype html
>
<
html
>
<
head
>
<
meta
charset
="utf-8"
>
<
title
>
title
>
head
>
<
body
>
<
script
>
//向上捨入
console.log(math.ceil(
6.4));
//向下
console.log(math.floor(
6.4));
//四捨五入
console.log(math.round(
6.4));
//隨機數 返回m至n+m-1之間的數
varn=10
;
varm=1
; math.floor(math.random()*n)
+m;//=== 值和型別都相等
//迴圈
varpoint=;
for(let x
inpoint )
vars1="
string";
for(
varc of s1)
//5種資料型別
//string number boolean object function
//6種物件
//object date array string number boolean
//2種不含值
//null undefined
//型別轉化
//轉化為字串
string(
123);
varx
=123
; x.tostring();
//轉化為數值
number(
"3.14");
script
>
body
>
html
>
JS數字 數字方法
乙個字串乙個數字 採用級聯 乙個數字乙個字串 採用級聯 在數字計算中,js語言會嘗試把字串改變為數字進行計算 減乘除 非字串進行除法,結果為nan typeof nan 返回number 計算數值超出範圍返回infinity 任何數除以0也返回infinity 字首為ox的數改為十六進製制數 tos...
JS資料型別 數字型別
捨入 rounding 是使用數字時最常用的操作之一。將數字捨入到小數點後n位 let num 1.232312 let a math.floor num 100 100 console.log a let num 12.34 console.log num.tofied 1 12.3ps tofi...
數字型別內建方法
1.1 可變or不可變 二 浮點型內建方法 float 整型和浮點型統稱為數字型別。1.用途 年齡 號碼 等級 2.定義 可以使用int 方法將純數字的字串轉為十進位制的整型 copyage 19 age int 19 print type age copycopyx int 111 print t...