📜  p5.js | shuffle()函数

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

p5.js | shuffle()函数

p5.js 中的shuffle()函数用于打乱给定数组元素的顺序

句法:

shuffle(Array)

参数:此函数接受一个参数数组,其元素将被打乱。

返回值:返回打乱后的数组。

下面的程序说明了 p5.js 中的 shuffle()函数:
示例 1:

function setup() { 
  
    // Creating Canvas size
    createCanvas(500, 90); 
      
    // Set the background color 
    background(220); 
      
    // Initializing the arrays
    let Array1 = ['IT', 'CSE', 'ECE'];
    
    // Calling to shuffle() function.
    let Array2 = shuffle(Array1);
      
    // Set the size of text 
    textSize(16); 
      
    // Set the text color 
    fill(color('red')); 
    
    // Getting new shuffled array
    text("Shuffled array is : " + Array2, 50, 30);
               
} 

输出:

示例 2:

function setup() { 
  
    // Creating Canvas size
    createCanvas(500, 90); 
      
    // Set the background color 
    background(220); 
    
        // Calling to shuffle() function on an array
        // Taken as the parameter
        let Array = shuffle(['Ram', 'Shayam', 'Geeta', 'Anita']);
      
    // Set the size of text 
    textSize(16); 
      
        // Set the text color 
    fill(color('red')); 
    
    // Getting new shuffled array
    text("Shuffled array is : " + Array, 50, 30);
               
} 

输出:

注意:在上面的代码中, draw()函数没有被使用,因为如果我们使用draw函数,那么它不会给出明确的输出,即它会不断地改变数组字符串的顺序并且不会给出任何停滞的结果。

参考: https://p5js.org/reference/#/p5/shuffle