Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
Getting started:
Related tutorials:
| // example of for,while, and do/while// | |
| var soloLoop = function(){ | |
| while(soloLoop){ | |
| console.log("Looped once!"); | |
| soloLoop = false | |
| };} | |
| //------------------------------- | |
| var getToDaChoppa = function(){ | |
| do { | |
| console.log("Maria Get to da choppa") |