This commit is contained in:
Karan
2021-11-25 20:25:58 +05:30
parent 65c4b167af
commit 1a19d738a9
10 changed files with 0 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);