La función d3.timeThursday en D3.js se usa para devolver todas las fechas basadas en el jueves en el rango dado de fecha de inicio y finalización.
Sintaxis:
d3.timeThursday.range( start, end, step );
Parámetros: esta función acepta tres parámetros que se detallan a continuación:
- Inicio: este parámetro contiene la fecha de inicio dada.
- fin: este parámetro contiene la fecha de finalización dada.
- paso: Es el parámetro opcional que contiene el valor utilizado para saltar las fechas.
Valor devuelto: esta función devuelve todas las fechas basadas en el jueves.
Los siguientes programas ilustran la función d3.timeThursday en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> D3.js | d3.timeThursday 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 timeThursday function // without step value var a = d3.timeThursday.range(start, end); // Getting the Thursday dates console.log(a); </script> </body> </html>
Producción:
["2015-08-05T18:30:00.000Z", "2015-08-12T18:30:00.000Z", "2015-08-19T18:30:00.000Z", "2015-08-26T18:30:00.000Z"]
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> D3.js | d3.timeThursday 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 timeThursday function // with step value var a = d3.timeThursday.range(start, end, 2); // Getting the Thursday dates console.log(a); </script> </body> </html>
Producción:
["2015-08-05T18:30:00.000Z", "2015-08-19T18:30:00.000Z"]
Referencia: https://devdocs.io/d3~5/d3-time#timeThursday
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA