La función day() en p5.js se usa para obtener el día actual del reloj del sistema. Devuelve el valor entre 1 y 31.
Sintaxis:
day()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: Devuelve un valor entero que representa la fecha actual.
El siguiente programa ilustra la función day() en p5.js:
Ejemplo: Este ejemplo usa la función day() para obtener el día actual del reloj del sistema.
function setup() { // Create Canvas of size 270*80 createCanvas(270, 80); } function draw() { // Set the background color background(220); // Initialize the parameter with day let d = day(); // Set the size of text textSize(16); // Set the text color fill(color('red')); // Display result text("Today's date is : " + d, 50, 30); }
Producción:
Referencia: https://p5js.org/reference/#/p5/day
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA