Notes : Building a Blackjack App
Setting up Javascript file
To include a JS file in an HTML code, you type the script tag before closing the body tag
<script src="index.js" ></script>
Declaring Variables
let firstName = "Henna"
let LastName = "Singh"
let fullName = firstName + " " ...
codelady.hashnode.dev2 min read