JSFiddle - React, Tailwind, and code Playground
by clauswilke
JavaScript
let a = [1, 2]
while (true) {
let x = a.shift()
if (typeof x === 'undefined') { break }
console.log(x)
}
by clauswilke
let a = [1, 2]
while (true) {
let x = a.shift()
if (typeof x === 'undefined') { break }
console.log(x)
}