This commit is contained in:
Kent C. Dodds
2019-07-31 20:27:48 -06:00
parent cd5939daf8
commit d0c1fa44e4
58 changed files with 3272 additions and 1704 deletions

12
src/example.js Normal file
View File

@@ -0,0 +1,12 @@
'use strict'
const username = 'freddy'
typeof username === 'strng'
if (!'serviceWorker' in navigator) {
// you have an old browser :-(
}
const greeting = 'hello'
console.log('${greeting} world!')
[1, 2, 3].forEach(x => console.log(x))