p5.js | función inversa()

La función reverse() en p5.js se usa para invertir el orden del elemento de array dado .

Sintaxis:

reverse(Array)

Parámetros: Esta función acepta un Array de parámetros cuyos elementos se van a invertir.

Valor devuelto: Devuelve una nueva array invertida.

El siguiente programa ilustra la función reverse() en p5.js:
Ejemplo: Este ejemplo usa la función reverse() para invertir el orden del elemento de array dado.

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 reverse() function.
        let Array3 = reverse(Array1);
        let Array4 = reverse(Array2);
      
    // Set the size of text 
    textSize(16); 
      
        // Set the text color 
    fill(color('red')); 
    
    // Getting new reversed array
    text("First reversed array is : "
      + Array3, 50, 30);
        text("Second reversed array is : " 
      + Array4, 50, 50);            
} 

Producción:

Referencia: https://p5js.org/reference/#/p5/reverse

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *