-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path07-string-methods--concatenation.js
78 lines (59 loc) · 1.94 KB
/
07-string-methods--concatenation.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* ******************************
* String Methods & Concatenation
* ******************************
*/
const firstName = 'John';
const lastName = 'Doe';
const age = 33;
const str = 'Hello there my name is Genesis';
const tags = 'web design, web development, programming';
let val;
val = firstName + lastName; // JohnDoe
/**
* ********************
* Concatenation
* ********************
*/
val = firstName + ' ' + lastName;
// Append
val = 'Genesis ';
val += 'Gabiola'; // Genesis Gabiola
// Concatenating w/ variables
val = 'Hello, my name is ' + firstName + ' and I am ' + age; // Hello, my name is John and i am 33
// Escaping
val = "That's awesome, I can't wait"; // That's awesome, I can't wait
/**
* ********************
* String Methods & Properties
* ********************
*/
// .length
val = firstName.length; // 4
// concat()
val = firstName.concat(' ', lastName); // John Doe
// Change case
val = firstName.toUpperCase(); // JOHN
val = firstName.toLowerCase(); // john
// Treating strings as read only arrays (not very useful but possible to do): Using the index of the string to return the character, 0 = J, 1 = o, 2 = h, ...
val = firstName[2]; // h
// indexOf()
val = firstName.indexOf('h'); // 2
val = firstName.lastIndexOf('h'); // 2
// charAt()
val = firstName.charAt('2'); // h
// Get last char
val = firstName.charAt(firstName.length - 1); // n
// substring()
val = firstName.substring(0, 4); // John
// slice()
val = firstName.slice(0, 4); // John = slice from left to right
val = firstName.slice(-3); // ohn = slice from right to left (negative number = return last x letters from the string).
// split()
val = str.split(' '); // (6) ['Hello', 'there', 'my', 'name', 'is', 'Genesis']
val = tags.split(','); // (3) ['web design', 'web development', 'programming']
// replace()
val = str.replace('Genesis', 'Jack'); // Hello there my name is Jack
// includes():
val = str.includes('Hello'); // true
val = str.includes('food'); // false