p5.js minute() function

Last Updated : 22 Aug, 2023
The minute() function in p5.js is used to return the current minute in the system clock. The value of minute() function lies between 0 to 59. Syntax:
minute()
Parameters: The function does not accept any parameter. Return Value: This function returns an integer value which represents the minute time. Below program illustrates the minute() function in p5.js: Example: This example uses minute() function to return the current minute in the system clock. javascript
function setup() {

    // Create Canvas of size 270*80
    createCanvas(270, 80);
}

function draw() {
    
    // Set the background color
    background(220);
    
    // Initialize the parameter with 
    // current minute
    let m = minute();

    // Set the text font size
    textSize(16);
    
    // Set the text color
    fill(color('red'));

    // Display the result
    text("Current minute is : "+m, 50, 30);
}
Output: Reference: https://p5js.org/reference/#/p5/minute
Comment