p5.js中的append()函數用於在給定數組的末尾添加值,即,它將原始數組的長度增加一。
用法:
append(Array, Value)
參數:該函數接受上述和以下描述的兩個參數:
- Array:它是原始輸入數組,要在其中添加新值。
- Value:它是要在數組末尾添加的值。
返回值:它返回新的附加數組。
以下示例程序旨在說明p5.js中的append()函數:
例:本示例使用append()函數在輸入數組的末尾添加任何值。
function setup() {
// Creating Canvas size
createCanvas(550, 110);
}
function draw() {
// Set the background color
background(220);
// Initialize the array into variables
let a = ['IT', 'CSE', 'ECE'];
let b = ['geeks', 'Students', 'Teachers'];
let c = ['Delhi', 'Mumbai'];
// Initialize the value into variables
let v = 'Civil';
let w = 'Peoples';
let x = 'Kolkata';
// Calling to append() function
let p = append(a, v);
let q = append(b, w);
let r = append(c, x);
// Set the size of text
textSize(16);
// Set the text color
fill(color('red'));
// Getting appended array
text("First appended array is : " + p, 50, 30);
text("Second appended array is : " + q, 50, 50);
text("Third appended array is : " + r, 50, 70);
}
輸出:
參考: https://p5js.org/reference/#/p5/append
相關用法
- PHP ArrayIterator append()用法及代碼示例
- PHP AppendIterator append()用法及代碼示例
- Node.js URLSearchParams.append()用法及代碼示例
- JQuery append()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 p5.js | append() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。