La función second() en p5.js se usa para devolver el segundo actual del reloj del sistema. El valor de la función second() se encuentra entre 0 y 59.
Sintaxis:
second()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: esta función devuelve un valor entero que representa el segundo actual.
El siguiente programa ilustra la función second() en p5.js:
Ejemplo: Este ejemplo usa la función second() para devolver el segundo actual.
function setup() { // Create Canvas of size 270*80 createCanvas(270, 80); } function draw() { // Set the background color background(220); // Store value of second() function // to the variable let s = second(); // Set the font size textSize(16); // Set the font color fill(color('red')); // Display result text("Current Second is : " + s, 50, 30); }
Producción:
Referencia: https://p5js.org/reference/#/p5/second
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