Skip to content

Instantly share code, notes, and snippets.

View donedgardo's full-sized avatar

Edgardo Carreras donedgardo

View GitHub Profile
@donedgardo
donedgardo / Next_vs_Meteor.js
Created February 8, 2017 19:32
NExt vs Meteor Article
import cowsay from 'cowsay-browser'
export default () => (
<pre>{ cowsay.say({ text: 'hi there!' }) }</pre>
)
@donedgardo
donedgardo / loopsQuiz.md
Last active February 7, 2017 22:20
Intro JS Quiz #2

Intro to JS Quiz #2

Loops and functions

1.Given the following array, what is the value of test:

var school = [
  ['David', 'Yamil', 'Edgardo'],
  ['Mari', 'Jan', 'Luis', 'Nelson']
];
var test = school[1][2];