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
相關用法
- Javascript Array concat()用法及代碼示例
- Javascript String concat()用法及代碼示例
- Node.js Buffer.concat()用法及代碼示例
- PHP pos()用法及代碼示例
- p5.js str()用法及代碼示例
- PHP max( )用法及代碼示例
- p5.js second()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js hex()用法及代碼示例
- PHP min( )用法及代碼示例
- p5.js sq()用法及代碼示例
- p5.js pow()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 p5.js | concat() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。