1
0
Fork 0
This commit is contained in:
Jason Williams 2019-08-23 14:43:40 -06:00
parent b2665bbfb4
commit 7572f1d0b8
1 changed files with 11 additions and 0 deletions

11
weather-app/app.js Normal file
View File

@ -0,0 +1,11 @@
console.log('Starting')
setTimeout(() => {
console.log('2 Second Timer')
}, 2000)
setTimeout(() => {
console.log('0 Second Timer')
}, 0)
console.log('Stopping')