-
Andrej Rasevic authoredAndrej Rasevic authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
jsIntro.html 420 B
<!DOCTYPE html>
<html>
<body>
<script>
console.log('Hello cmsc335!')
var firstName = "Testudo"
{
let firstName = "Lenny"
console.log(firstName)
}
let middleName = "Kermit"
const lastName = "Bias"
console.log(`Hi, my name is: ${firstName} ${lastName}`)
function add(num1, num2) {
return num1 + num2
}
console.log(add(5,3))
</script>
</body>
</html>