La función year() en p5.js se usa para devolver el año actual del reloj del sistema. Devuelve un valor entero que representa el año actual.
Sintaxis:
year()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: Devuelve un valor entero que representa el año actual.
El siguiente programa ilustra la función year() en p5.js:
Ejemplo: Este ejemplo usa la función year() para devolver el año actual del reloj del sistema.
function setup() { // Create Canvas of given size createCanvas(270, 80); } function draw() { // Set the background color background(220); // Initialize the parameter with current year let y = year(); // Set the font size textSize(16); // Set the font color fill(color('red')); // Display result text("Current Year is : " + y, 50, 30); }
Producción:
Referencia: https://p5js.org/reference/#/p5/year
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