The year() function in p5.js is used to return the current year from the system clock. It returns an integer value which represents current year.
Syntax:
year()
Parameters: The function does not accept any parameter.
Return Value: It returns an integer value which represent current year.
Below program illustrates the year() function in p5.js:
Example: This example uses year() function to return the current year from the system clock.
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); } |
Output:
Reference: https://p5js.org/reference/#/p5/year


… [Trackback]
[…] There you will find 98786 more Information to that Topic: geeksforgeeks.org/p5-js-year-function-2/ […]
… [Trackback]
[…] Here you will find 86901 additional Information to that Topic: geeksforgeeks.org/p5-js-year-function-2/ […]
… [Trackback]
[…] Read More here to that Topic: geeksforgeeks.org/p5-js-year-function-2/ […]