-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstringMethod.js
56 lines (36 loc) · 1.42 KB
/
stringMethod.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
// 1) .at(index) return the index value of string when we pass the index as argument
// let str = 'taku is good boy'
// console.log(str.at(5))
/*
2) .charAt(index) return the index value of string when we pass the index as argument
// let str = 'taku is good boy'
// console.log(str.at(5))
*/
// 3) .includes
//method which determines wheither the element exits in string and return boolean value.
// let str1= "My house is in khargone"
// console.log(str1.includes("house")? "yes ": "n")
/*
The split() method of String values takes a pattern and divides this string into an ordered list of substrings by searching for the pattern, puts these substrings into an array, and returns the array.
const str = 'The quick brown fox jumps over the lazy dog.';
const words = str.split(' ');
console.log(words[3]);
// Expected output: "fox"
const chars = str.split('');
console.log(chars[8]);
// Expected output: "k"
const strCopy = str.split();
console.log(strCopy);
// Expected output: Array ["The quick brown fox jumps over the lazy dog."]
*/
/*
.toLowerCase()
.toUpperCase()
ex : const sentence = 'The quick brown fox jumps over the lazy dog.';
console.log(sentence.split(' ')[3].toUpperCase()); <-- this is somthing tricky ..!
console.log(sentence);
// Expected output: "the quick brown fox jumps over the lazy dog."
trim() remove sapce from both side
trimEnd() remove spaces at the end
trimStart() remove spaces at the starting
*/