-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjavascript.txt
1143 lines (851 loc) · 18.4 KB
/
javascript.txt
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
javacscript:
--------------------
javascript is a scrpting program for useful to develop front end applications,
But recently they were developed node.js so from node.js application javscript
useful as backend application also.
javacsript is implemented in many other application
angular, typescript, reactjs, nodejs, jquery
MOngoDB
javascriptscript is one of concept is developed by brendon eiche 1995.
live script.
java it is Object Oriented Programm and it supports OOPS,
class, object, polymorphism,
javascrit is script based program language or Object based language
. 2015 javascript also introduced some
of the features like
class
object
const
let
array
arrowfunction or lamda expression
var
javascript is implements some features in the year 2015 .
ECMA 2015
(European Computer Manufacturer Association)
ECMA 2015 standard or ES6 standards: Any
javascript is a light weight program,
javascript:
--javscript support operators
--javscripts data typescript
--javascript supports array , Object
--javascript is also control statement
--string
--event handling Mechanism
---validate form
Data types:
------------------------
number
boolean
null
string
javascript also embedded in html
synatx:
<script type="text/javascript">
-----
</script>
OR
<script language="javascript">
----
</script>
Basic Example program to inclue javascript code in Body section HTML:
--------------------------------------------------------------
<html>
<head>
</head>
<body>
<script type="text/javascript">
document.write("Hello world");
</script>
</body>
</html>
Example program to include Javscript code in Head Section:
-------------------------------------------------------------------
<html>
<head>
<script type="text/javascript">
document.write("Hello world");
</script>
</head>
<body>
</body>
</html>
Operators:
-----------------------------
Operator is a symbol performs action between the operands.
1. Arithmetic
+ 5+2=7
-
*
/
%
2. Assignement Operator:
=
var a=10;
+=
-+
*=
/=
%=
4
3. String Operators:
----------------------
+
var str1="sravan";
var str2="reddy";
var str3=str1+str2;
str3="sravanreddy"
In this example + is an concatenation
4. comparission Operators:OR Relational Operators
----------------------------------
<
>
<=
>=
!=
==
5. Logical Operator:
------------------
&&
||
!
Control Statements in Javscript:
--------------------------------
control statements in java is useful for controlling the flow of execution
conditional
Iterative Or Loop statement
conditional statatements:
if
if-else
elseif
nestedif
switch
loop statement:
for
while
do-while
function in javascript:
----------------------------
Definition: a function is a statements or a group of statement executed by a single unit.
In javascript function definition defined in following ways
syntax:
function function name()
{
statements;
}
Note: function definition in javascript we write either in head section or
in body section.
but function definition execution only possible through function calling
function call: function call in javascript invokes function definition .
syntax:
functionname();
or
using event trigger mechanism to invoke the function definition.
Example program on function using event trigger mechanism:
----------------------------------------------------------
<html>
<head>
<script type="text/javascript">
function display()
{
document.write("welcome to javascript functions"+"<br>");
document.write("function definition");
}
</script>
</head>
<body>
<form>
<input type="button" value="submit" onclick="display()">
</form>
</body>
</html>
Note: in the above example onclick is an event , similerly
javscript support many event handling mechanisms they are
--> onclick
-->ondblclick
-->onmouseover
-->onmouseout
->onload .....
etc
Example program on function calling:
----------------------------------------------------------
<html>
<head>
<script type="text/javascript">
function display()
{
document.write("welcome to javascript functions"+"<br>");
document.write("function definition");
}
display();
</script>
</head>
<body>
</body>
</html>
Example program on function with parameters:
--------------------------------------------------
<html>
<head>
<script type="text/javascript">
function display(name,age)
{
document.write("name is= "+name+" age is"+age);
}
</script>
</head>
<body>
<form>
<input type="button" value="submit" onclick="display('shravan',28)"/>
</form>
</body>
</html>
example2:
----------------
<html>
<head>
<script type="text/javascript">
function display(name,age)
{
document.write("name is= "+name+" age is"+age);
}
display('timeberner',56);
</script>
</head>
<body>
</body>
</html>
Javascript display possibilities:
--------------------------------------------
in javascript to display content we follows the gien ways.
1) Writing into an HTML using innerHTML
2) Writing into an HTMl using document object
3) using window.alert()
4) using console.log()
1. Using InnerHTML:
------------------------
<html>
<head>
</head>
<body>
<h2>Using innerHTMl </h2>
<p id="demo">getElement ById method we are using</p>
<button type="button" onclick='document.getElementById("demo").innerHTML="Hello javscript!"'>
click here</button>
</body>
</html>
2)Using document.write()
---------------------------------------------
<html>
<head>
<script type="text/javascript">
function display()
{
document.write("welcome to javascript functions"+"<br>");
document.write("function definition");
}
display();
</script>
</head>
<body>
</body>
</html>
3)using window.alert()
------------------------------------
<html>
<head>
</head>
<body>
<script type="text/javascript">
window.alert("window alert method in javscript");
</script>
</body>
</html>
4)using console.log()
--------------------------------------------------
Note: in javscript using console object we print the javascript code
on console scree.
in the following example using log method to print text on console screen....
<html>
<head>
</head>
<body>
<script type="text/javascript">
console.log("welcome to console part");
console.log("console related output");
</script>
</body>
</html>
Ways to embedded javscript code in HTML:
------------------------------------------------------------
To embedded script code in html we follows the given ways.
1. body
2. head
3. using external file
3. Using External file:
-------------------------------------------
In javascript using external file to include the code,
in the following examples are included javascript code in external file
Test.js
---------------------------
<html>
<head>
<script src="extern.js" type="text/javascript" >
</script>
</head>
<body>
<input type="button" value="click" onclick="display()"/>
</body>
</html>
extern.js
---------------------------------------
function display()
{
window.alert("external js file");
}
Note: In external file inclusion in javascript both file must be
included in the same location.
ECMA2015 OR ES6 standard javascript includes these below features.
let & var keyword:
-------------------------------------------
<html>
<head>
</head>
<body>
<script language="javascript">
function display()
{
for(let i=0;i<=5;i++)
{
console.log(i);
}
}
display();
</script>
</body>
</html>
Ex2:
---------------
<html>
<head>
</head>
<body>
<script language="javascript">
function display()
{
for(let i=0;i<=5;i++)
{
console.log(i);//scope of the i variable only inside
}
console.log(i);//outside scope of the let keyword
}
display();
</script>
</body>
</html>
Uncaught ReferenceError: i is not defined
at display (Test.html:12)
at Test.html:
Examle program on var keyword:
---------------------------------
<html>
<head>
</head>
<body>
<script language="javascript">
function display()
{
for(var i=0;i<=5;i++)
{
console.log(i);
}
console.log(i);
}
display();
</script>
</body>
</html>
Note: The scope of the var keyword exist outside of the method also.
const keyword:
-----------------------------------------
<html>
<head>
</head>
<body>
<script language="javascript">
const a=10;
console.log("a value is"+a);
</script>
</body>
</html>
ex2:
---------------
<html>
<head>
</head>
<body>
<script language="javascript">
const a;
a=10;
console.log("a value is"+a);
</script>
</body>
</html>
Uncaught SyntaxError: Missing initializer in const declaration
Arrow function :
-------------------------------------------
Arrow function in javascrit follows with a different syntax:
equal sign before of the parenthesis and after paraenthesis arrow sign
Arros function concept executed by fast by the engine.
<html>
<head>
</head>
<body>
<script language="javascript">
const display=()=>
{
for(var i=0;i<=5;i++)
{
console.log(i);
}
}
display();
</script>
</body>
</html>
this keyword:
----------------------------------------
here this is a keyword, in javascrit this keyword referes
to the global object by default i.e
it referes window object
object contais(properties and methods)
<html>
<head>
</head>
<body>
<script language="javascript">
console.log(this);
</script>
</body>
</html>
output: window
<html>
<head>
</head>
<body>
<script language="javascript">
document.write(this);
</script>
</body>
</html>
window object
Declare this keyword in normal function:
---------------------------------------------
<html>
<head>
</head>
<body>
<script language="javascript">
function display()
{
document.write(2+2+"<br>");
document.write(this);
}
display();
</script>
</body>
</html>
return: global object i.e window
Example program on this keyword declared in Object:
-------------------------------------------------------
whenever we declare this keyword inside of any
object in that case this keyword return only that object
related data only.
<html>
<head>
</head>
<body>
<script language="javascript">
const hello=
{
name:"shravan",
sum: function(){
console.log(2+2);
console.log(this);
}
}
hello.sum();
</script>
</body>
</html>
javascript objects:
-------------------------------------------------
A javascript object is an entity has state and it's behaviour
(properties and methods)
--> it is not a class based language .
In java how we create Object:
first we create class
after that we create object
In javascript class doesn't exist
we create directly Object
Note: we don't create any class, but we will create object directly.
How many ways we create Object in javascript:
--------------------------------------------
Here in javascript object creattion is mainly follows in 3 ways.
1) By using Object literals
2) By using instance of an Object
3) By using Object constructor
1. By using Object Literals:
-----------------------------------
In javascript object literal follows the given syntx:
Object ={Property1: value1,property2:value2................}
<html>
<head>
</head>
<body>
<script language="javascript">
employee={id:100,name:"shravan"}
document.write(employee.id+" "+employee.name);
</script>
</body>
</html>
2) By Using Object Instance:
-----------------------------------------
syntax:
var objectname=new Object();
<html>
<head>
</head>
<body>
<script language="javascript">
var student=new Object();
student.id=101;
student.name="shravan";
student.address="hyderabad";
document.write(student.id+" "+student.name+" "+student.address);
</script>
</body>
</html>
3) By using Object constructor:
----------------------------------------------
<html>
<head>
</head>
<body>
<script language="javascript">
function student(id,name,address)
{
this.id=id;
this.name=name;
this.address=address;
}
s=new student(11,"Akshay","nagpur");
document.write(s.id+" "+s.name+" "+s.address);
</script>
</body>
</html>
Builtin methof of an Object:
-----------------------------------
1. assign()
2.is()
3. freeze()
4.isfrozen()
Example program on Object.assign() method:
---------------------------------------------------
<html>
<head>
</head>
<body>
<script language="javascript">
var o1={a: 1,b: 4,c:5};
var o3={d:1,e:2,f:3};
var o2=Object.assign({c:4,d:8},o1);
document.write(o2.a+" "+o2.b+" "+o2.c+" "+o2.d);
1 4 5 8
</script>
</body>
</html>
Example program on is() emthod in javascript:
----------------------------------------------------------
Object.is() method used to determine whether two values
are same values or not.
<html>
<head>
</head>
<body>
<h2>Object.is() method in javascript</h2>
<script language="javascript">
document.write(Object.is('Hello','Hello')+"<br>");
document.write(Object.is('Hello','World')+"<br>");
document.write(Object.is(null,null)+"<br>");
document.write(Object.is('Hello','hello'));
</script>
</body>
</html>
Example program on freeze();
--------------------------------------------
when we apply freeze( ) method for any perticular object
then taht object values doesn't modify or updated.
<html>
<head>
</head>
<body>
<script language="javascript">
var obj1={a:20,b:30};
var obj2=Object.freeze(obj1);
obj2.a=40;
document.write(obj2.a);
</script>
</body>
</html>
Example program on isfrozen();
-----------------------------------
Using isfrozen() method we check the objects which are in freeze state or not
<html>
<head>
</head>
<body>
<script language="javascript">
var obj1={a:20,b:30};
var obj2=Object.freeze(obj1);
document.write(Object.isFrozen(obj2));
</script>
</body>
</html>
javascrit Date:
------------------------------------------
javascript date object exist with multiple
builtin methods. using those methods we find the
date, year ,month etc....
Date object built-in methods:
-----------------------------
getDay()
getFullYear()
getHours()
getMilliSeconds()
getMinutes()
<html>
<head>
</head>
<body>
<script language="javascript">
var date=new Date();
document.write(date.getDay()+"<br>");
document.write(date.getHours()+"<br>");
</script>
</body>
</html>
Array Object in javscript:
---------------------------------------------------
in javascript Array is an Object represetns collection of
similer type of elements.
Array Object in javascript created mainly in 3 ways:
------------------------------------------------
Those are
1. By array literal
2. By crating an instance of an array
3. by using array constructor
1. By Array Literals :
---------------------------------------
var arrayobject=[valu1,value2,...........]
<html>
<head>
</head>
<body>
<script language="javascript">
var names=["shravan","akshay","Arpit","nakul"];
for(n=0;n<names.length;n++)
{
document.write(names[n]+"<br>");
}
</script>
</body>
</html>
2. By creating an instance of an array:
----------------------------------------------
<html>
<head>
</head>
<body>
<script language="javascript">
var student=new Array();
student[0]="computers";
student[1]="electronics";
student[2]="maths";
student[3]="Civil ";
for(n=0;n<student.length;n++)
{
document.write(student[n]+"<br>");
}
</script>
</body>
</html>
3.using Array constructor
----------------------------
<html>
<head>
</head>
<body>
<script language="javascript">
var student=new Array("abc","bcd","cde");
for(n=0;n<student.length;n++)
{
document.write(student[n]+"<br>");
}
</script>
</body>
</html>
Array Methods in javacsript:
-------------------------------------
The following builtin methods supported by javascript.
1. concat()
2. filter()
3. reverse()
4. sort()
1.
<html>
<head>
</head>
<body>
<script language="javascript">
var arr1=["nakul","arpit"];
var arr2=["akshay","shravan"];
var arr3=arr1.concat(arr2);
document.write(arr3);
</script>
</body>
</html>
2.
<html>
<head>
</head>
<body>
<script language="javascript">
var salary=[2000,4000,6000,8000];
function test(sal)
{
return sal<5000;
}
document.write(salary.filter(test));
</script>
</body>
</html>
3. revers()
<html>
<head>
</head>
<body>
<script language="javascript">
var arr1=["Abc","Nbcd","Qde","Def"];
arr1.sort();
var arr2=arr1.reverse();
document.write(arr2);
</script>
</body>
</html>
4.