-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmyfirstscript.js
More file actions
262 lines (207 loc) · 4.1 KB
/
myfirstscript.js
File metadata and controls
262 lines (207 loc) · 4.1 KB
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
function myfunc(){
document.getElementById('p1').innerHTML = "I have changed the content";
}
function func2(){
console.log("I am getting printed in console");
}
function func3(){
alert('Hello I am acting as an alert');
}
function my_func_variable()
{
let number1;
number1 = 100;
alert(number1);
}
function my_func_variable1(){
let num1,num2,num3,total;
num1 = 10;
num2 = 20;
num3 = 30;
total = num1 + num2 + num3;
alert(total);
}
function my_func_str(){
var fname,lname;
fname = "good";
lname = "coder";
// alert(fname+" "+lname);
console.log(fname+" "+lname);
}
function const_price(){
const p1 = 30; //single line comment
const p2 = 40; /* multi line comment */
let total = p1 + p2;
alert(total)
}
function demo_example(){
//let name = "punit";
//let name = "demo";
var name = "punit";
var name = "demo";
alert(name);
}
function my_arr(){
var cars = ["Maruti","Tata","BMW","Ford","Tata"];
console.log(cars[2]);
}
function person_data(){
let data = {fname:"steve",lname:"jobs",age:52};
console.table(data);
}
function my_para_func(num1,num2){
let res = num1*num2;
alert(res);
}
function loop_example(){
for(let i=1; i < 11;i++)
{
console.log(i);
}
}
function loop_example_array()
{
var cars = ["Maruti","Tata","BMW","Ford","Tata"];
let cars_length = cars.length;
for (let i=0; i<cars_length;i++)
{
console.log(cars[i]);
}
}
function loop_example_object(){
let data = {fname:"steve",lname:"jobs",age:52};
for (let i in data){
console.table(i,data[i]);
}
}
function loop_example_while(){
let i = 1;
while(i<=10)
{
console.log(i);
i++;
}
}
function loop_break_statement(){
for(let i=1; i<=10;i++){
if(i == 7)
{
break;
}
console.log(i);
}
}
function loop_continue_example(){
for(let i=1;i<=10;i++)
{
if(i==5)
{
continue;
}
console.log(i);
}
}
function condition_example()
{
let age = 18;
let inp_age = 15;
if(inp_age > age)
{
alert("Eligible to Vote");
}
else
{
alert("Not Eligible to Vote");
}
}
function test(){
let num=0;
while(num<10){
if(num==5){
continue;
num++;
}
console.log(num);
}
}
function multi_condition()
{
let age = 18;
let inp_age = 21;
let country = "INDIA";
if(inp_age>age && country=="india")
{
alert('Eligible to Vote');
}
else
{
alert('Not Eligible to Vote');
}
}
function if_elseif_else()
{
let time = 18;
if(time>=6 && time<=12)
{
alert("Good Morning");
}
else if(time>12 && time<=15)
{
alert('Good AfterNoon');
}
else if(time>15 && time<=19)
{
alert('Good Evening');
}
else if(time>19 && time<=24)
{
alert('Good Night');
}
else
{
alert('Sorry Cannot Wish');
}
}
function join_method_example(){
const fruits = ['apple','grapes','mango'];
let new_fruits = fruits.join(":");
alert(new_fruits);
}
function pop_example(){
const fruits = ['apple','grapes','mango'];
let new_fruits = fruits.pop();
alert(new_fruits);
alert(fruits);
}
function push_example(){
const fruits = ['apple','grapes','mango'];
fruits.push("Watermelon");
alert(fruits);
}
function change_value_via_index(){
const fruits = ['apple','grapes','mango'];
fruits[1] = "kiwi"
alert(fruits);
}
function delete_value(){
const fruits = ['apple','grapes','mango'];
delete fruits[0];
alert(fruits);
}
function concat_array()
{
var arr1 = ["Maharashtra","Punjab","Goa"];
var arr2 = ["Mumbai","Chandigarh","Panji"];
var arr3 = arr1.concat(arr2);
alert(arr3);
}
function sort_array(){
var arr1 = ["Maharashtra","Punjab","Goa"];
arr1.sort();
alert(arr1);
}
function sort_number(){
var arr2 = [100,23,59,67,33];
arr2.sort((a,b)=>a-b);
alert(arr2);
}