La función month() en p5.js se usa para obtener el mes actual del reloj del sistema .
Sintaxis
month()
Parámetros: La función no acepta ningún parámetro.
El siguiente programa ilustra la función month() en p5.js:
Ejemplo:
function setup() { //create Canvas of size 270*80 createCanvas(270, 80); } function draw() { background(220); //initialize the parameter with month let m = month(); textSize(16); fill(color('red')); text("Current Month is : " + m, 50, 30); }
Producción:
Referencia: https://p5js.org/reference/#/p5/month
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