📜  p5.js |附加()函数

📅  最后修改于: 2022-05-13 01:56:41.173000             🧑  作者: Mango

p5.js |附加()函数

p5.js 中的append()函数用于在给定数组的末尾添加值,即,它将原始数组的长度增加一。

句法:

append(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