Skip to content

Instantly share code, notes, and snippets.

View nathabonfim59's full-sized avatar

Nathanael Bonfim nathabonfim59

View GitHub Profile
@nathabonfim59
nathabonfim59 / fsa-1-exercicio-2.js
Last active August 3, 2017 13:46
FullStackAcademy - aula 1 - exercício 2
// Exercício 2
const produtos = [
{
id: 1,
preco: 10.0,
qtd: 2
},
{
id: 2,
@nathabonfim59
nathabonfim59 / fsa-1-exercicio-1.js
Last active August 3, 2017 13:45
FullStackAcademy - aula 1 - exercício 1
// Exercício - 1
const produtos = [
{
nome: 'Bicicleta',
preco: 1200.0
},
{
nome: 'Capacete',
preco: 450.0
}