Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

p5.js | day() function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The day() function in p5.js is used to get the current day from the system’s clock. It returns the value inbetween 1 to 31.

Syntax:

day()

Parameters: The function does not accept any parameter.

Return Value: It returns an integer value which represents the current date.

Below program illustrates the day() function in p5.js:

Example: This example uses day() function to get the current day from the system’s clock.




function setup() {
      
    // Create Canvas of size 270*80
    createCanvas(270, 80);
}
  
function draw() {
      
    // Set the background color
    background(220);
      
    // Initialize the parameter with day
    let d = day();
      
    // Set the size of text
    textSize(16);
  
    // Set the text color
    fill(color('red'));
      
    // Display result
    text("Today's date is : " + d, 50, 30);
}

Output:

Reference: https://p5js.org/reference/#/p5/day

My Personal Notes arrow_drop_up
Last Updated : 08 Apr, 2019
Like Article
Save Article
Similar Reads
Related Tutorials