IPIn section "The '===' Operator" the result of : let a=1; let b='1'; let c=true; console.log(a===b); console.log(a==c); the output on the console wouldn't be: false true ? Very good article, thank you.Comment·Article·Sep 3, 2020·Why you shouldn't use Double Equals Operator in JavaScript