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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。