p5.js | concat()函数
p5.js 中的concat()函数用于连接两个给定的数组。这个函数从未来的版本中被贬低,而是使用 First_array.concat(Second_array) 。
句法:
concat(First_array, Second_array)
参数:该函数接受上面提到的两个参数,如下所述:
- First_array:将与第二个数组连接的第一个数组。
- Second_array:将与第一个数组连接的第二个数组。
返回值:它返回一个新的串联数组。
下面的程序说明了 p5.js 中的 concat()函数:
示例:此示例使用 concat()函数连接两个数组。
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("New concatenated array is : "
+ Array3, 50, 30);
}
输出:
参考: https://p5js.org/reference/#/p5/concat