Resources for learning web design & front-end development:
ONLINE
Design
| // Function Statement | |
| // -------- ---------- | |
| // function saludo (nombre) { | |
| // return "Hola " + nombre + "! :)"; | |
| // } | |
| // console.log(saludo("Ivan")); | |
| // Function Expression | |
| // -------- ---------- |
| /* | |
| * Reglas de nomenclatura de archivos: | |
| * | |
| * 1. No espacios en los nombres (ej: hola mundo -> malo!) | |
| * 2. Mezcla de mayúsculas en los nombres (ej: HolaMundo -> malo!) | |
| */ | |
| var variableString = "Hola q' tal?"; | |
| // var variableNumber = 3; | |
| // var variableNumber = 3.8976; |
| var clientId = '<your_client_id_here>'; | |
| var clientSecret = '<your_client_secret_here>'; | |
| $.ajax({ | |
| url: 'https://api.lyft.com/oauth/token', | |
| type: 'POST', | |
| data: { | |
| grant_type: 'client_credentials', | |
| scope: 'public' | |
| }, |
Resources for learning web design & front-end development:
ONLINE
Design
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.