Skip to content

Commit 4c94341

Browse files
authored
Update main
1 parent d6c5dd1 commit 4c94341

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

main

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//================================================================
2-
//================================================================
1+
//================================================================================================================================
2+
//================================================================================================================================
33

44
//[Variables]//
55
var example = true;
@@ -14,8 +14,8 @@ console.log(example); // SyntaxError
1414

1515
//If we need to overwrite we use 'let'
1616

17-
//================================================================
18-
//================================================================
17+
//================================================================================================================================
18+
//================================================================================================================================
1919

2020
//[Strings]//
2121

@@ -35,7 +35,7 @@ console.log( `${firstName} ${lastName}`.trim().length); // trims all
3535
console.log(`${firstName} ${lastName}`.toUpperCase()); //change all to upper case or even lower case using toLowerCase()
3636
console.log(`${firstName} ${lastName}`.split(' ')); // split this once it detects the space, our value will be an array ["Dylan", "Israel"], if using just split('') it can break each of the letters individually
3737

38-
//================================================================
39-
//================================================================
38+
//================================================================================================================================
39+
//================================================================================================================================
4040

4141
//[Numbers]//

0 commit comments

Comments
 (0)