-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
20 lines (19 loc) · 928 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// UDEMYS JAVASCRIPT-ESSENTIALS ///////////////////////////////////////////////////////////
// to see this arrow function being invoked to the dom console. Open your browser
// and right click and inspect element. You'll see many tabs like Element
const Welcome = () => {
return "Hola!! Let's work those brains!";
};
console.log(Welcome());
//// This is another function example
// function myWelcome() {
// return "Hola! Let's work those brains!";
// }
// console.log(myWelcome());
//// This is a way to create elements and give them text value and to render them to our browser.
//// take a peek this should be rendering on your live server page :)
const p = document.createElement("p");
p.innerHTML = "Hola! Let's work those brains";
document.body.appendChild(p);
// to see this arrow function being invoked to the dom console. Open your browser
// and right click and inspect element. You'll see many tabs like Element