Reputation: 31
Its my first test app. but why its not compiled. i couldn't figure it out. Can anyone explain please.
Upvotes: 1
Views: 48
Reputation: 20230
Your index.html file is referencing "index.js", but from the screenshots you have provided it looks as though you don't have this, but instead you have "main.js".
Hence change "index.html" to reference "main.js" i.e.
<script src='main.js'></script>
Also there's a typo in main.js, change "ducument" to "document".
Upvotes: 1