js裡面的內建物件

2021-09-23 22:31:34 字數 1974 閱讀 9063

1.隨機  0-1

console.log(math.random(x));

2.向下 向上取整

console.log(math.floor(1.2));小於等於x的最大整數

console.log(math.ceil(1.2));向上取整,大於等於x的最小整數

3.四捨五入

console.log(math.round(4.5));

4.開平方

console.log(math.sqrt(3));

4.次冪

console.log(math.pow(2,3));

console.log(math.pow(x,y)); 返回 x 的 y 次冪。

5.返回圓周率(約等於3.14159)

console.log(math.pi);

6.返回數的余弦.

console.log(math.cos(x));

7.返回數的正弦

console.log(math.sin(x));

8.返回數的正切

console.log(math.tan(x));

1.建立date屬性

var time=new date();

console.log(time);

2.轉化為中文時間

console.log(time.toutcstring());

console.log(time.todatestring());

console.log(time.toisostring());

console.log(time.tolocaledatestring());

console.log(time.tolocaletimestring());

console.log(time.tolocalestring());

console.log(time.totimestring());

3.時間的設定

(1).設定時間  直接在new的時候設定

var times=new date("2019.8.10 12:00:00");

console.log(times);

var times1=new date(2019,8,10,12,0,0); 中間的月+1

console.log(times1);

(2).使用 date中的方法設定

var times=new date();

times.setfullyear(2018);年

times.setdate(3);天

times.sethours(12);時

times.setminutes(59)分

times.setseconds(20)秒

times.setmilliseconds(200);毫秒

console.log(times);

4.時間的獲取

var times=new date();

console.log(times.getdate());天

console.log(times.getday());週幾

console.log(times.getfullyear());年

console.log(times.gethours());時

console.log(times.getmilliseconds());毫秒

console.log(times.getminutes());分

console.log(times.getmonth()+1);月 +1

console.log(times.getseconds());天

console.log(times.gettime());到2023年的總毫秒數

console.log(times.getfullyear());獲取年份

js 裡面的 和

1.1.1兩邊條件都為true時,結果才為true 1.2如果有乙個為false,結果就為false 1.3當第乙個條件為false時,就不再判斷後面的條件 注意 當數值參與邏輯與運算時,結果為true,那麼會返回的會是第二個為真的值 如果結果為false,返回的會是第乙個為假的值。2.2.1只要有...

js裡面for迴圈裡面的of和in區別

for in 語句用於遍歷陣列或者物件的屬性名稱 key 鍵名 陣列中的每個元素的索引被視為屬性名稱,所以在使用for in遍歷array時,拿到的是每個元素索引 for in 迴圈只遍歷可列舉屬性。像 array和 object使用內建建構函式所建立的物件都會繼承自object.prototype...

JS裡面的鎧甲合體!

本標題黨又回來了,最近在專心研究一些js基礎性的書籍,以期把原理都了解透徹,所以寫文章的頻率就降了下來。但是今天我必須要來寫一下子,為什麼呢,因為今天周五!先說明一下js裡面的拆箱與裝箱指的是js封箱和拆箱,已經玩的很六的大佬就不要浪費時間啦,抓緊研究更深的!引子 我們來看一下這段簡單的 可能有的人...