current work

This commit is contained in:
2024-09-17 14:41:00 -05:00
commit fa7ac2949b
13 changed files with 183 additions and 0 deletions

11
4/sayhello.html Normal file
View File

@ -0,0 +1,11 @@
<html><body><script>
function sayHello(name){
return `Hello ${name}, it is good to see you.`
}
let a = sayHello("jon".toLocaleUpperCase())
console.log(a)
// sayHello("meli")
// sayHello("sammie")
// sayHello("lucy")
</script></body></html>