/* Type Coercion (Type Casting) - + - - - "" - 2 - false - true */ let a = "100"; let b = 20; let c = true; console.log(+a + b + c);
You have not completed all required lessons and assessments.