diff --git a/weather-app/app.js b/weather-app/app.js new file mode 100644 index 0000000..eab2f82 --- /dev/null +++ b/weather-app/app.js @@ -0,0 +1,11 @@ +console.log('Starting') + +setTimeout(() => { + console.log('2 Second Timer') +}, 2000) + +setTimeout(() => { + console.log('0 Second Timer') +}, 0) + +console.log('Stopping')