<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M.5 11.5c0-5.4 0-8.1 1.7-9.8C3.9 0 6.6 0 12 0h1c5.4 0 8.1 0 9.8 1.7 1.7 1.7 1.7 4.4 1.7 9.8v1c0 5.4 0 8.1-1.7 9.8C21.1 24 18.4 24 13 24h-1c-5.4 0-8.1 0-9.8-1.7C.5 20.6.5 18 .5 12.5v-1Z" fill="#fff"/>
<path d="M13 16c-4 0-6.4-2.6-6.5-7h2c.1 3.2 1.6 4.6 2.8 4.8V9h2v2.8c1.2-.1 2.4-1.4 2.8-2.8h2c-.2.7-.5 1.4-1 2-.4.6-1 1.1-1.7 1.5a5.4 5.4 0 0 1 3 3.5h-2a3.6 3.6 0 0 0-3.1-2.5V16H13Z" fill="#07F"/>
</svg>
window.onReadyState = (e, t) => {
const a = ["loading", "interactive", "complete"],
o = a.slice(a.indexOf(e)),
n = () => o.includes(document.readyState);
n() ? t() : document.addEventListener("readystatechange", (() => n() && t()))
}
window.onReadyState("complete",function(){(function(m,e,t,r,i,k,a)..... })
fightResolve = (a, b) =>{
const arr = [a.toLowerCase(),b.toLowerCase()]
console.log(arr.join() === ['a','s'].join())
}
fightResolve('a','S')
fightResolve = (arr1, arr2) => {
return JSON.stringify(arr1).toLowerCase() === JSON.stringify(arr2).toLowerCase()
}
console.log(fightResolve(['a,b'], ['a', 'b']))
console.log(a) //Cannot access 'a' before initialization
console.log(b) //undefined
const a = 2;
var b = 3;
var b;
console.log(b) //undefined
b = 3;