Skip to content

Instantly share code, notes, and snippets.

View gollodev's full-sized avatar
🏠
Working from home

Jose Lopez gollodev

🏠
Working from home
View GitHub Profile
@gollodev
gollodev / bucle1.js
Created July 2, 2017 05:12
post1-bucle1
for ([expresion inicial]; [condicion]; [incremento]) {
//bloque de codigo
}
@gollodev
gollodev / condicionales4.js
Created July 2, 2017 05:08
pos1-condicionales4
switch (expresion) {
case valor1:
// se ejecuta esta sentencia cuando valor1 es true
[break;]
case valor2:
// se ejecuta esta sentencia cuando valor2 es true
[break;]
...
case valorN:
// se ejecuta esta sentencia cuando valorN es true
@gollodev
gollodev / introrx.md
Created October 29, 2015 01:34 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing