D3.js中的d3.utcDay()函数用于以协调世界时(UTC)返回“YYYY-MM-DD”格式的日期。
用法:
d3.utcDay(Date);
参数:该函数接受参数“Date”。
返回值:此函数以特定格式返回给定日期。
以下程序说明了D3.js中的d3.utcDay()函数:
示例1:
<!DOCTYPE html>
<html>
<head>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<script>
// Initialising a current date
var now = new Date;
// calling d3.utcDay()
var day = d3.utcDay(now);
// Getting the date
console.log(day);
</script>
</body>
</html>
输出:
"2019-07-20T00:00:00.000Z"
示例2:下面的代码计算两个给定日期之间的差额。
<!DOCTYPE html>
<html>
<head>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<script>
// Initialising start and end date
var start = new Date(2015, 02, 01);
var end = new Date(2015, 02, 04);
// Calling the utcDay() function to
// calculate the difference between two dates
var a = d3.utcDay.count(start, end);
// Getting the calculated dates
console.log(a);
</script>
</body>
</html>
输出:
3
相关用法
- p5.js tan()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js sin()用法及代码示例
- PHP cos( )用法及代码示例
- PHP pos()用法及代码示例
- PHP key()用法及代码示例
- p5.js log()用法及代码示例
- p5.js day()用法及代码示例
- PHP each()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.utcDay() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。