help with this code
-
!DOCTYPTYPE html>
<html>
<body>
<p id=“Counting”></p>
<script>
document.getElementById(“Counting”).inner.HTML = Count();
function Count(){
var Starting_Point = 9;
function Plus_one(){Starting_Point + = 1;}
Plus_one();
return Starting_Point;
}
</script>
</body>
</html>
i don’ t understand whats wrong with my code. when i run it it will come out plain in google chrome. -
You are in luck!
You will find something which should get you to your answer HERE.