D3.js中的d3.utcSaturday函数用于返回在给定的开始和结束日期世界协调时间(UTC)范围内基于星期六的所有日期。
用法:
d3.utcSaturday.range(start, end, step);
参数:该函数接受以下三个参数:
- Start:这是给定的开始日期。
- end:这是给定的结束日期。
- step:这是用于跳过日期的可选值。
返回值:此函数返回基于星期六的所有日期。
以下程序说明了D3.js中的d3.utcSaturday函数:
示例1:
<!DOCTYPE html>
<html>
<head>
<title>
D3.js | d3.utcSaturday Function
</title>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<script>
// Initialising start and end date
var start = new Date(2015, 07, 01);
var end = new Date(2015, 07, 30);
// Calling the utcSaturday function
// without step value
var a = d3.utcSaturday.range(start, end);
// Getting the Saturday dates
console.log(a);
</script>
</body>
</html>
输出:
[“2015-08-01T00:00:00.000Z”, “2015-08-08T00:00:00.000Z”, “2015-08-15T00:00:00.000Z”, “2015-08-22T00:00:00.000Z”, “2015-08-29T00:00:00.000Z”]
示例2:
<!DOCTYPE html>
<html>
<head>
<title>
D3.js | d3.utcSaturday Function
</title>
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
</head>
<body>
<script>
// Initialising start and end date
var start = new Date(2015, 07, 01);
var end = new Date(2015, 07, 30);
// Calling the utcSaturday function
// with step value
var a = d3.utcSaturday.range(start, end, 2);
// Getting the Saturday dates
console.log(a);
</script>
</body>
</html>
输出:
["2015-08-01T00:00:00.000Z", "2015-08-15T00:00:00.000Z", "2015-08-29T00:00:00.000Z"]
参考: https://devdocs.io/d3~5/d3-time#timeSaturday
相关用法
- PHP each()用法及代码示例
- p5.js day()用法及代码示例
- p5.js int()用法及代码示例
- p5.js second()用法及代码示例
- PHP dir()用法及代码示例
- PHP each()用法及代码示例
- p5.js arc()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.lab()用法及代码示例
- d3.js d3.max()用法及代码示例
- p5.js str()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 D3.js | d3.utcSaturday Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。