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

Related Articles

p5.js | concat() function

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

The concat() function in p5.js is used to concatenate the two given arrays. This function is depreciated from future versions and uses First_array.concat(Second_array) instead. 

Syntax:

concat(First_array, Second_array)

Parameters: This function accepts two parameters as mentioned above and described below:

  • First_array: The first array will be concatenated with the second array.
  • Second_array: The second array will be concatenated with the first array.

Return Value: It returns a new concatenated array. Below program illustrates the concat() function in p5.js: 

Example: This example uses concat() function to concatenate two arrays. 

javascript




function setup() {
 
    // Creating Canvas size
    createCanvas(500, 90);
}
 
function draw() {
 
    // Set the background color
    background(220);
 
    // Initializing the arrays
    let Array1 = ['IT', 'CSE', 'ECE'];
    let Array2 = ['Civil', 'Mechanical'];
 
    // Calling to concat() function.
    let Array3 = concat(Array1, Array2);
 
    // Set the size of text
    textSize(16);
 
    // Set the text color
    fill(color('red'));
 
    // Getting new concatenated array
    text(& quot;New concatenated array is: & quot;
    + Array3, 50, 30);
}

Output: 

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

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