Skip to content

Instantly share code, notes, and snippets.

View alvaroha1's full-sized avatar

Alvaro Hernandez alvaroha1

View GitHub Profile
@alvaroha1
alvaroha1 / README.md
Created June 26, 2018 09:58 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@alvaroha1
alvaroha1 / README.md
Created June 26, 2018 09:58 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@alvaroha1
alvaroha1 / async.js
Created June 25, 2018 16:15 — forked from arol/async.js
Asynchronicity exercise
// log the `rnd` result in the console using all three async techniques.
// You can only call console.log inside the `main` function.
const randomNumber = () => {
return Math.random();
}
// 1. Make it wait for 1 sec. with `setTimeout` and log it on main function
const timeoutRandomNumber = () => {