- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1_console.log.js
More file actions
Latest commit
16 lines (12 loc) · 457 Bytes
/
Copy path1_console.log.js
File metadata and controls
16 lines (12 loc) · 457 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
* we use 'console.log()' function to print to the console;
*/
console.log('Hello World!')
// by typing '%c' before the string you can modify its appearence
// after the 'comma' i can write valid CSS to modify the output in the web browser
// Example 1
console.log('%cHello World',"color: blue")
// Example 2
console.log('%cThis is a Heading',"font-size:48px")
// Example 3
console.log('%cThis is a colorful Heading',"color:red; font-size:48px;")