Thursday, October 9, 2025
HomeLanguagesJavascriptp5.js year() function

p5.js year() function

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, neveropen 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!
RELATED ARTICLES

Most Popular

Dominic
32345 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6714 POSTS0 COMMENTS
Nicole Veronica
11877 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11940 POSTS0 COMMENTS
Shaida Kate Naidoo
6834 POSTS0 COMMENTS
Ted Musemwa
7094 POSTS0 COMMENTS
Thapelo Manthata
6789 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS