| A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | ||||||||||||||||||||||||||
2 | console.log(variable_or_data); | console.log() | ||||||||||||||||||||||||
3 | integer_var = string_variable.indexOf('some_smaller_string'); | .indexOf() | ||||||||||||||||||||||||
4 | integer_var = string_variable.lastIndexOf('some_smaller_string'); | .lastIndexOf() | ||||||||||||||||||||||||
5 | string2_var = string1_variagle.toUpperCase(); | .toUpperCase() | ||||||||||||||||||||||||
6 | string2_var = string1_variagle.toLowerCase(); | .toLowerCase() | ||||||||||||||||||||||||
7 | sub_string = string1.slice(2,7); | .slice() | ||||||||||||||||||||||||
8 | replacedcherecterstring = string1.replace('car','bike'); | .replace() | ||||||||||||||||||||||||
9 | extended_string = original_string.concat(string_to_be_added_further); | .concat() | ||||||||||||||||||||||||
10 | Proper_string = string_having_whitespace_in_front.trim(); | .trim() | ||||||||||||||||||||||||
11 | char_at_3 = string.charAt(3); | .charAt() | ||||||||||||||||||||||||
12 | ||||||||||||||||||||||||||
13 | var len = arr.length; | .length | ||||||||||||||||||||||||
14 | arr.sort() | .sort() | ||||||||||||||||||||||||
15 | arr,push(data) | .push() | ||||||||||||||||||||||||
16 | ||||||||||||||||||||||||||
17 | alert(message_string) | alert() | ||||||||||||||||||||||||
18 | string name = messsage(messege_string); | prompt() | ||||||||||||||||||||||||
19 | let yes = confirm(messege_string); | confirm() | ||||||||||||||||||||||||
20 | arr.forEach(function fun(variable){ console.log(variable);}) | .forEach() | ||||||||||||||||||||||||
21 | ||||||||||||||||||||||||||
22 | var main_var = document.getElementById('main'); | document.getElementById() | ||||||||||||||||||||||||
23 | let NavImg_var = document.getElementByClassName('navimg'); | document.getElementByClassName() | ||||||||||||||||||||||||
24 | let selector_var = document.querySelector('#navimg'); | .querySelector() | ||||||||||||||||||||||||
25 | ||||||||||||||||||||||||||
26 | para_containg_var.style.display = 'block'; | .style. | ||||||||||||||||||||||||
27 | para_containg_var.addEventListener('mouseover', function fun(){}) | .addEventListner() | ||||||||||||||||||||||||
28 | setTimeout(function_name, time_after_which_function_run ,var1,var2,...) | setTimeout() | ||||||||||||||||||||||||
29 | setInterval(function_name, time_interval_of_function)run, var1, var2,...); | setInterval() | ||||||||||||||||||||||||
30 | ||||||||||||||||||||||||||
31 | let now = new Date(); | Date() | ||||||||||||||||||||||||
32 | let month = now.getMonth(); | .getMonth() | ||||||||||||||||||||||||
33 | let yr = now.getFullYear(); | .getFullYear() | ||||||||||||||||||||||||
34 | let day = now.getDate(); | .getDate() | ||||||||||||||||||||||||
35 | let hours = now.getHours(); | .getHours() | ||||||||||||||||||||||||
36 | now.setDate(12); | .setDate() | ||||||||||||||||||||||||
37 | now.setMInutes(29); | .setMinute() | ||||||||||||||||||||||||
38 | now.setInterval(updateTime,1000); while updateTime is manually written function | .setInterval() | ||||||||||||||||||||||||
39 | id_name_of_a_element.innerHTML = new Date() ; | .innerHTML | ||||||||||||||||||||||||
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 | ||||||||||||||||||||||||||
79 | ||||||||||||||||||||||||||
80 | ||||||||||||||||||||||||||
81 | ||||||||||||||||||||||||||
82 | ||||||||||||||||||||||||||
83 | ||||||||||||||||||||||||||
84 | ||||||||||||||||||||||||||
85 | ||||||||||||||||||||||||||
86 | ||||||||||||||||||||||||||
87 | ||||||||||||||||||||||||||
88 | ||||||||||||||||||||||||||
89 | ||||||||||||||||||||||||||
90 | ||||||||||||||||||||||||||
91 | ||||||||||||||||||||||||||
92 | ||||||||||||||||||||||||||
93 | ||||||||||||||||||||||||||
94 | ||||||||||||||||||||||||||
95 | ||||||||||||||||||||||||||
96 | ||||||||||||||||||||||||||
97 | ||||||||||||||||||||||||||
98 | ||||||||||||||||||||||||||
99 | ||||||||||||||||||||||||||
100 |