Underscore.js是javascript中的一個庫,它使對數組,字符串,對象的操作更加容易和方便。 _.now()函數用於返回當前時間的時間戳。在瀏覽器中處理動畫時,此方法很有用。
用法:
_.now();
參數:它不帶任何參數。
返回:返回類型是數字。
注意:在瀏覽器中使用下劃線函數之前,非常有必要鏈接下劃線CDN。鏈接underscore.js CDN時“_”作為全局變量附加到瀏覽器。
為了更好地理解該函數,以下僅舉幾個例子。
範例1:
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script>
console.log(`Current timestamp is:${_.now()}`)
</script>
</body>
</html>
輸出:
範例2:
<!DOCTYPE html>
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script>
//creating print function to print timestamp after delay of 10ms
function print(){
setTimeout(()=>{
console.log(`Current timestamp is:${_.now()}`)
}, 10)
}
//running this function 5 times using _.times() function.
_.times(5, print)
console.log("Type of timestamp is:", typeof(_.now()))
</script>
</body>
</html>
輸出:
相關用法
- PHP each()用法及代碼示例
- d3.js d3.rgb()用法及代碼示例
- PHP end()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- p5.js value()用法及代碼示例
- p5.js nf()用法及代碼示例
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- d3.js d3.hsl()用法及代碼示例
- PHP ord()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP Ds\Set first()用法及代碼示例
注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 Underscore.js _.now() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。