Open In App
Related Articles

p5.js year() function

Improve Article
Improve
Save Article
Save
Like Article
Like

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

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 22 Aug, 2023
Like Article
Save Article
Similar Reads
Related Tutorials