This commit is contained in:
Karan
2021-11-24 17:43:05 +05:30
parent 4d8e0309d4
commit cd1eff2fd2
4 changed files with 419 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
const myName = "Maaike";
const myAge = 29;
const coder = true;
const message = "Hello, my name is "+myName+", I am "+myAge+" years old and I can code JavaScript: "+coder+".";
console.log(message);