當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Moment.js moment().endOf()用法及代碼示例


moment().endOf() 方法用於改變 Moment,以便將其設置為給定時間單位的末尾。可用的時間單位可以是年、月、季度、周、日、小時、分鍾和秒。

用法:

moment().endOf( String );

Parameters: 該方法接受如上所述和如下所述的單個參數:

  • String: 它是將 Moment 對象設置為結束的時間單位。

返回值:此方法返回設置值後的變異 Moment。

注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。

Moment.js 可以使用以下命令安裝:

moment模塊的安裝:

npm install moment

以下示例將演示 Moment.js moment().endOf() 方法。

示例 1:

Javascript


const moment = require('moment'); 
  
console.log("Current moment is:", moment().toString()); 
  
console.log( 
    "endOf current moment's day:", 
    moment().endOf('day').toString() 
) 
  
console.log( 
    "endOf current moment's week:", 
    moment().endOf('week').toString() 
) 
  
console.log( 
    "endOf current moment's month:", 
    moment().endOf('month').toString() 
) 
  
console.log( 
    "endOf current moment's quarter:", 
    moment().endOf('quarter').toString() 
) 
  
console.log( 
    "endOf current moment's year:", 
    moment().endOf('year').toString() 
)

輸出:

Current moment is: Mon Jul 18 2022 02:36:03 GMT+0530
endOf current moment’s day: Mon Jul 18 2022 23:59:59 GMT+0530
endOf current moment’s week: Sat Jul 23 2022 23:59:59 GMT+0530
endOf current moment’s month: Sun Jul 31 2022 23:59:59 GMT+0530
endOf current moment’s quarter: Fri Sep 30 2022 23:59:59 GMT+0530
endOf current moment’s year: Sat Dec 31 2022 23:59:59 GMT+0530

示例 2:

Javascript


const moment = require('moment'); 
  
console.log("Current moment is:", 
    moment().toString()); 
  
console.log( 
    "endOf current moment's second:", 
    moment().endOf('second').toString() 
) 
  
console.log( 
    "endOf current moment's minute:", 
    moment().endOf('minute').toString() 
) 
  
console.log( 
    "endOf current moment's hour:", 
    moment().endOf('hour').toString() 
)

輸出:

Current moment is: Mon Jul 18 2022 02:36:03 GMT+0530
endOf current moment’s second: Mon Jul 18 2022 02:36:03 GMT+0530
endOf current moment’s minute: Mon Jul 18 2022 02:36:59 GMT+0530
endOf current moment’s hour: Mon Jul 18 2022 02:59:59 GMT+0530

參考: https://momentjs.com/docs/#/manipulating/end-of/



相關用法


注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().endOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。