La función hour() en p5.js se usa para devolver la hora actual del reloj del sistema. Devuelve un valor entero que se encuentra entre 0 y 23.
Sintaxis:
hour()
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve un valor entero que representa la hora actual.
El siguiente programa ilustra la función hora() en p5.js:
Ejemplo: este ejemplo utiliza la función hora() para devolver la hora 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 // current hour let h = hour(); // Set the font size textSize(16); // Set the font color fill(color('red')); // Display result text("Current hour is : " + h, 50, 30); }
Salida:
Referencia: https://p5js.org/reference/#/p5/hour
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