-
Notifications
You must be signed in to change notification settings - Fork 0
/
kayword.js
242 lines (199 loc) · 4.23 KB
/
kayword.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
//javascript keywort total 26
//keyword name list : break,case,catch, continue ,debugger , dafault ,delete,
//do,else ,finally ,for ,function , if ,in ,instanceof , new return, switch ,
//this, throw,try , typeof,var, void ,thile ,with ,
// break
for (let i = 0; i < 5; i++) {
if (i === 3) {
break;
}
console.log(i); // 0, 1, 2
}
// case
let fruit = 'apple';
switch (fruit) {
case 'banana':
console.log('Banana is good!');
break;
case 'apple':
console.log('Apple is sweet!');
break;
default:
console.log('Unknown fruit.');
}
// catch
try {
throw new Error('Oops!');
} catch (error) {
console.error(error.message); // Oops!
}
// continue
for (let i = 0; i < 5; i++) {
if (i === 3) {
continue;
}
console.log(i); // 0, 1, 2, 4
}
// debugger
function debugExample() {
debugger; // Execution will pause here if developer tools are open
console.log('Debugging');
}
debugExample();
// default
switch (fruit) {
case 'banana':
console.log('Banana is good!');
break;
case 'apple':
console.log('Apple is sweet!');
break;
default:
console.log('Unknown fruit.'); // Unknown fruit.
}
// delete
let obj = { prop: 'value' };
delete obj.prop;
console.log(obj.prop); // undefined
// do
let i = 0;
do {
console.log(i);
i++;
} while (i < 3); // 0, 1, 2
// else
if (fruit === 'banana') {
console.log('Banana');
} else {
console.log('Not a banana'); // Not a banana
}
// finally
try {
throw new Error('Oops again!');
} catch (error) {
console.error(error.message);
} finally {
console.log('This will always run'); // This will always run
}
// for
for (let i = 0; i < 3; i++) {
console.log(i); // 0, 1, 2
}
// function
function greet(name) {
return `Hello, ${name}`;
}
console.log(greet('Omor')); // Hello, Omor
// if
if (fruit === 'apple') {
console.log('Fruit is apple'); // Fruit is apple
}
// in
let car = { make: 'Toyota', model: 'Camry' };
console.log('make' in car); // true
// instanceof
console.log(car instanceof Object); // true
// new
let date = new Date();
console.log(date);
// return
function sum(a, b) {
return a + b;
}
console.log(sum(2, 3)); // 5
// switch
switch (fruit) {
case 'banana':
console.log('Banana');
break;
case 'apple':
console.log('Apple'); // Apple
break;
default:
console.log('Unknown');
}
// this
let personA = {
name: 'Omor',
greet: function() {
console.log(this.name);
}
};
personA.greet(); // Omor
// throw
function checkPositive(number) {
if (number < 0) {
throw new Error('Negative number');
}
return 'Positive number';
}
try {
console.log(checkPositive(-1));
} catch (error) {
console.error(error.message); // Negative number
}
// try
try {
throw new Error('Try error');
} catch (error) {
console.error(error.message); // Try error
}
// typeof
console.log(typeof "I am Omor"); // string
// var
var name = 'Omor';
console.log(name); // Omor
// void
void function() {
console.log('This is a void function');
}(); // This is a void function
// while
let j = 0;
while (j < 3) {
console.log(j);
j++;
} // 0, 1, 2
// with (not recommended to use)
with (Math) {
console.log(sqrt(16)); // 4
}
//javaScritpt data type total type 4
// 1.String
//2.Number
//3.Boolean
//4.objects
//String data type
var name = "omar faruk";
document.write(name);
//Number data type
var Number = 190;
document.write(Number);
//Boolen data type
var ValidationCheck = false;
document.write(ValidationCheck);
//Object data type
let person = {
name: "John",
age: 30,
isStudent: false,
address: {
city: "New York",
zipCode: "10001"
}
};
// Convert the object to a string representation
let personString = JSON.stringify(person);
// Display the string representation using document.write()
document.write(personString);
//toFixed keyword using
var num = 12.335534;
document.write(num.toFixed(2));
//Number conver to String
var num1 = 12.33534;
document.write(toString(num1));
//String conver to number
var num2 = "2.335534";
document.write(parseInt(num2));
//number of lenght function
var num3 = 12.33534;
console.log(num3.toPrecision(2));