当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js concat()用法及代码示例


p5.j​​s中的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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 p5.js | concat() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。