install, config, run
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
const name = 'Freddy'
|
||||
typeof name === 'strng'
|
||||
typeof name === 'string'
|
||||
|
||||
if (!'serviceWorker' in navigator) {
|
||||
if (!('serviceWorker' in navigator)) {
|
||||
// you have an old browser :-(
|
||||
}
|
||||
|
||||
const greeting = 'hello'
|
||||
console.log('${greting} world!')
|
||||
console.log(`${greeting} world!`)
|
||||
|
||||
[(1, 2, 3)].forEach(x => console.log(x))
|
||||
;[(1, 2, 3)].forEach(x => console.log(x))
|
||||
|
||||
Reference in New Issue
Block a user