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:
let url;
function setup() {
createCanvas(350, 200);
url = getURL();
}
function draw() {
background(0, 200, 0);
textSize(30);
textAlign(LEFT);
text(url, 100, height / 2);
}
|
Output:

Reference: https://p5js.org/reference/#/p5/getURL
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 :
10 Aug, 2023
Like Article
Save Article