“Cómo agregar matriz” Código de respuesta

Cómo agregar a una matriz

#include <vector>
#include <iostream>

int main() {
  std::vector<int> v;
  v.push_back(42);

  std::cout << v.size() << "\n";
  std::cout << v.back() << "\n";
}

Output:
1
42
Happy Horse

Además de una matriz en JS

//testing to show how it works, javascript
Open Orangutan

Cómo agregar matriz

const arr = ['First item', 'Second item', 'Third item'];

arr.push('Fourth item');

console.log(arr); // ['First item', 'Second item', 'Third item', 'Fourth item']
Oluwadara Adesoji

Respuestas similares a “Cómo agregar matriz”

Preguntas similares a “Cómo agregar matriz”

Más respuestas relacionadas con “Cómo agregar matriz” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código