Skip to content

Instantly share code, notes, and snippets.

View jhonalino's full-sized avatar
🤷‍♂️
just writing javascript

Jhon (kiko) jhonalino

🤷‍♂️
just writing javascript
View GitHub Profile
for( var x=0; x<3; x++){
for( var y=3; y>0; y--){
console.log( y*x);
}
}
//initiate x with 0
//check x < 3 if we can proceed
//if so, do the inner loop
//initiate y to 3
//check y > 0 if we can proceed
@jhonalino
jhonalino / index.css
Created April 26, 2018 06:48
system fonts for web
body {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans,
Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}