Open In App

p5.js getURL() Function

Last Updated : 10 Aug, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report
The getURL() function in p5.js is used to return the current URL. Syntax:
getURL()
Parameters: This function does not accept any parameter. Return Value: It returns the current URL string. Below program illustrates the getURL() function in p5.js: Example: javascript
// Declare a URL variable
let url;

// Function to set the height and
// width of window
function setup() {
    createCanvas(350, 200);
    
    // Use getURL() function to
    // get the current URL
    url = getURL();
}
 
function draw() {
  
    // Set the background color
    background(0, 200, 0);
    
    // Set the font-size
    textSize(30);
  
    // Set the text alignment
    textAlign(LEFT);
  
    text(url, 100, height / 2);
}
Output: Reference: https://p5js.org/reference/#/p5/getURL

Similar Reads