Skip to content
Snippets Groups Projects
Commit 0a3889df authored by Andrej Rasevic's avatar Andrej Rasevic
Browse files

adding live lecture example

parent 6d00b2fc
No related branches found
No related tags found
No related merge requests found
<!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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment