p5.js | función de empalme()

La función splice() en p5.js se usa para insertar valores o elementos de array en la array dada.
Sintaxis: 
 

splice(Array, Values, Position)

Parámetros: esta función acepta tres parámetros, como se mencionó anteriormente y se describe a continuación: 
 

  • Array: Esta es una array dada que se va a modificar.
  • Valores: estos son los valores u otra array cuyos elementos se insertarán en la array dada que se modificará.
  • Posición: Este es el número de elementos de la array dada después de los cuales se insertarán nuevos valores o elementos de otra array.

Valor devuelto: Devuelve una nueva array modificada.
Los siguientes programas ilustran la función splice() en p5.js:
Ejemplo 1: Este ejemplo usa la función splice() para insertar valores o elementos de array en la array dada. 
 

javascript

function setup() {
 
    // Creating Canvas size
    createCanvas(500, 90);
}
 
function draw() {
     
    // Set the background color
    background(220);
     
    // Initializing the array
    let Array = [9, 6, 0, 22, 4, 1, 15];
   
    // Initializing the value which are
    // to be inserted
    let Value = 5;
   
    // Initializing the position after
    // which insertion is done
    // counting is done from starting
    let Position = 5;
   
    // Calling to splice() function.
    let A = splice(Array, Value, Position);
     
    // Set the size of text
    textSize(16);
     
    // Set the text color
    fill(color('red'));
   
    // Getting new modified array
    text("New modified array is : " + A, 50, 30);          
}

Producción: 
 

Ejemplo 2: este ejemplo utiliza la función splice() para insertar valores o elementos de array en la array dada. 
 

javascript

function setup() {
 
    // Creating Canvas size
    createCanvas(500, 90);
}
 
function draw() {
     
    // Set the background color
    background(220);
     
    // Initializing the array
    let Array = ['Ram', 'Geeta', 'Shita', 'Shyam'];
   
    // Initializing the value which are
    // to be inserted
    let Value = 'Geeks';
   
    // Initializing the position after
    // which insertion is done
    // counting is done from starting
    let Position = 2;
   
    // Calling to splice() function.
    let A = splice(Array, Value, Position);
     
    // Set the size of text
    textSize(16);
     
    // Set the text color
    fill(color('red'));
   
    // Getting new modified array
    text("New modified array is : " + A, 50, 30);          
}

Producción: 
 

Ejemplo 3: este ejemplo utiliza la función splice() para insertar elementos de array en otra array. 
 

javascript

function setup() {
 
    // Creating Canvas size
    createCanvas(600, 90);
}
 
function draw() {
     
    // Set the background color
    background(220);
     
    // Initializing the array
    let Array = ['Ram', 'Geeta', 'Shita', 'Shyam'];
   
    // Initializing a new array whose elements are
    // to be inserted
    let Value = ['Geeks', 'GeeksforGeek'];
   
    // Initializing the position after
    // which insertion is done
    // counting is done from starting
    let Position = 2;
   
    // Calling to splice() function.
    let A = splice(Array, Value, Position);
     
    // Set the size of text
    textSize(16);
     
    // Set the text color
    fill(color('red'));
   
    // Getting new modified array
    text("New modified array is : " + A, 50, 30);
              
}

Producción: 
 

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

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 *