p5.js | getURL() Function
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:
// 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); } |
chevron_right
filter_none
Output:

Reference: https://p5js.org/reference/#/p5/getURL
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- p5.js | int() function
- D3.js | d3.sum() function
- PHP | next() Function
- PHP | end() Function
- D3.js | d3.mean() function
- D3.js | d3.rgb() Function
- CSS | url() Function
- p5.js | red() function
- PHP | max( ) Function
- p5.js | value() Function
- p5.js | cos() function
- p5.js | sin() function
- p5.js | log() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



