freeCodeCamp/curriculum/challenges/spanish/02-javascript-algorithms-an.../basic-javascript/modify-array-data-with-inde...

1.9 KiB

id title challengeType videoUrl localeTitle
cf1111c1c11feddfaeb8bdef Modify Array Data With Indexes 1 Modificar datos de matriz con índices

Description

A diferencia de las cadenas, las entradas de matrices son mutables y se pueden cambiar libremente. Ejemplo
var ourArray = [50,40,30];
ourArray [0] = 15; // es igual a [15,40,30]
Nota
No debe haber espacios entre el nombre de la matriz y los corchetes, como la array [0] . Aunque JavaScript puede procesar esto correctamente, esto puede confundir a otros programadores que leen su código.

Instructions

Modifique los datos almacenados en el índice 0 de myArray a un valor de 45 .

Tests

tests:
  - text: '<code>myArray</code> ahora debería ser [45,64,99].'
    testString: 'assert((function(){if(typeof myArray != "undefined" && myArray[0] == 45 && myArray[1] == 64 && myArray[2] == 99){return true;}else{return false;}})(), "<code>myArray</code> should now be [45,64,99].");'
  - text: Debe utilizar el índice correcto para modificar el valor en <code>myArray</code> .
    testString: 'assert((function(){if(code.match(/myArray\[0\]\s*=\s*/g)){return true;}else{return false;}})(), "You should be using correct index to modify the value in <code>myArray</code>.");'

Challenge Seed

// Example
var ourArray = [18,64,99];
ourArray[1] = 45; // ourArray now equals [18,45,99].

// Setup
var myArray = [18,64,99];

// Only change code below this line.

After Test

console.info('after the test');

Solution

// solution required