它用于使用isBefore()函数检查某个时刻是否在另一个时刻之前,以检查某个日期是否在Node.js中的特定日期之前。如果尚未解析,则第一个参数将被瞬间解析。
用法:
moment().isBefore(Moment|String|Number|Date|Array); moment().isBefore(Moment|String|Number|Date|Array, String);
参数:它可以保存Moment | String | Number | Date | Array。
返回:对或错
moment模块的安装:
- 您可以访问“安装力矩”模块的链接。您可以使用此命令安装此软件包。
npm install moment
- 安装 moment模块后,可以使用命令在命令提示符下检查力矩版本。
npm version moment
- 之后,您可以仅创建一个文件夹并添加一个文件,例如index.js。要运行此文件,您需要运行以下命令。
node index.js
范例1: 文件名:index.js
// Requiring module
const moment = require('moment');
var bool1 = moment('2010-10-20')
.isBefore('2010-10-21'); // true
console.log(bool1);
var bool2 = moment('2010-10-20')
.isBefore('2010-12-31', 'year'); // false
console.log(bool2);
运行程序的步骤:
- 项目结构将如下所示:
- 确保使用以下命令安装了moment模块:
npm install moment
- 使用以下命令运行index.js文件:
node index.js
输出:
true false
范例2: 文件名:index.js
// Requiring module
const moment = require('moment');
function checkIsBefore(date1, date2) {
return moment(date1).isBefore(date2);
}
var bool = checkIsBefore('2010-10-20', '2010-10-21');
console.log(bool);
使用以下命令运行index.js文件:
node index.js
输出:
true
相关用法
- d3.js zip()用法及代码示例
- PHP pi( )用法及代码示例
- d3.js d3.min()用法及代码示例
- PHP pow( )用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP ord()用法及代码示例
- p5.js mag()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- p5.js value()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js nfp()用法及代码示例
- PHP Ds\Set last()用法及代码示例
- PHP Ds\Set add()用法及代码示例
- PHP Ds\Set first()用法及代码示例
注:本文由纯净天空筛选整理自gouravhammad大神的英文原创作品 Moment.js isBefore() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。