Q. What will be the output of the following JavaScript code?
Code:<script>
let str = "IncludeHelp";
document.getElementById("test").innerHTML = str.length;
</script>
β
Correct Answer: (A)
11
<script>
let str = "IncludeHelp";
document.getElementById("test").innerHTML = str.length;
</script>
You must be Logged in to update hint/solution