-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsData.js
1793 lines (1793 loc) · 53.3 KB
/
jsData.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
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
[
{
kind: "youtube#searchResult",
etag: "JjWY4rw6bitMAX-k-M7Lh4Uzquc",
id: {
kind: "youtube#video",
videoId: "nHz1VSxggeo",
},
snippet: {
publishedAt: "2021-04-07T01:30:05Z",
channelId: "UCvsGj_fR6ytigxbSeTZV0Jw",
title:
"Javascript Full Course in One Video | Full Tutorial for Beginners to Expert [Hindi]",
description:
"Javascript Full Course in One Video | Full Tutorial for Beginners to Expert [Hindi] Best Web Dev Book ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/nHz1VSxggeo/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/nHz1VSxggeo/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/nHz1VSxggeo/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Geeky Hub",
liveBroadcastContent: "none",
publishTime: "2021-04-07T01:30:05Z",
},
},
{
kind: "youtube#searchResult",
etag: "S86KGXUygTGfuQyNMH8SMLxmzDw",
id: {
kind: "youtube#video",
videoId: "TQvFOyu6fc8",
},
snippet: {
publishedAt: "2020-05-21T20:22:30Z",
channelId: "UCn3VPXrVMGSeUXDPkQup17Q",
title:
"Javascript Important Questions MCQ. Javascript ke महत्पूर्ण MCQ प्रश्न",
description:
"Javascript ke important questions . ITI COPA Javascript important questions CTI CSA Javascript important question Javascript ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/TQvFOyu6fc8/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/TQvFOyu6fc8/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/TQvFOyu6fc8/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "ITI Training - Learning By Doing",
liveBroadcastContent: "none",
publishTime: "2020-05-21T20:22:30Z",
},
},
{
kind: "youtube#searchResult",
etag: "iruntG73OUpSyZXkPUN_xytAYlU",
id: {
kind: "youtube#video",
videoId: "uqnhupLqLKE",
},
snippet: {
publishedAt: "2020-07-06T04:10:12Z",
channelId: "UCAYCXLokF9UNrGmblxKPRXA",
title:
"Salesforce JavaScript Developer 1 certification series | Session 1",
description:
"In this tutorial, you will learn the fundamentals of Javascripts like Variables, types, and Collection. I am covering the following ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/uqnhupLqLKE/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/uqnhupLqLKE/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/uqnhupLqLKE/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "salesforce troop",
liveBroadcastContent: "none",
publishTime: "2020-07-06T04:10:12Z",
},
},
{
kind: "youtube#searchResult",
etag: "3JzLYw0JzuR27RGplA3tuUpucWE",
id: {
kind: "youtube#video",
videoId: "o1oNo_J9XsQ",
},
snippet: {
publishedAt: "2021-08-05T04:02:26Z",
channelId: "UCWCGvAu1NDCldmLasELk62g",
title:
"Advanced JavaScript Tutorial in Hindi [Part 88] - Object Oriented Programming in ES6 (JavaScript)",
description:
"Javascript #Tutorial #Hindi Link for Complete JavaScript Tutorial in Hindi for Beginners: ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/o1oNo_J9XsQ/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/o1oNo_J9XsQ/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/o1oNo_J9XsQ/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Tech Gun",
liveBroadcastContent: "none",
publishTime: "2021-08-05T04:02:26Z",
},
},
{
kind: "youtube#searchResult",
etag: "tvEi5nAfvPCq-HbPaTv4wWbhFlk",
id: {
kind: "youtube#video",
videoId: "bBOGQ2Yoif0",
},
snippet: {
publishedAt: "2020-03-20T08:35:50Z",
channelId: "UCAYCXLokF9UNrGmblxKPRXA",
title:
"JavaScript Concepts To Learn Before Building LWC | Lightning Web Component Part 3",
description:
"In this tutorial, you will learn the JavaScript concepts that are required to play with the lightning web component. I am covering the ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/bBOGQ2Yoif0/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/bBOGQ2Yoif0/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/bBOGQ2Yoif0/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "salesforce troop",
liveBroadcastContent: "none",
publishTime: "2020-03-20T08:35:50Z",
},
},
{
kind: "youtube#searchResult",
etag: "jwYLYPCGE5eLSm66OI6svR4QcAw",
id: {
kind: "youtube#video",
videoId: "ZqglkJ_ZP84",
},
snippet: {
publishedAt: "2020-10-21T07:07:24Z",
channelId: "UCBug0wBPvz1Ag9TlGKsOUdw",
title:
"Java vs Javascript | Difference between java and javascript | Java | Javascript",
description:
"Connect with me - GitHub - @codemohitpandey Facebook - @codemohitpandey Instagram - @codemohitpandey Twitter ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/ZqglkJ_ZP84/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/ZqglkJ_ZP84/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/ZqglkJ_ZP84/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "CodeMohitPandey",
liveBroadcastContent: "none",
publishTime: "2020-10-21T07:07:24Z",
},
},
{
kind: "youtube#searchResult",
etag: "EpXtR7hgejSbt-emTpCNRa5Uncs",
id: {
kind: "youtube#video",
videoId: "f5t0tSV69Cc",
},
snippet: {
publishedAt: "2020-05-03T13:51:53Z",
channelId: "UCViPJWPGF4U6VcOcvVdAjhg",
title:
"top 10 JavaScript array methods you should know In Hindi | JavaScript array methods in hindi",
description:
"Hello Friends, In this tutorial i am going to teach you about 10 JavaScript array methods you should know In Hindi, forEach() -This ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/f5t0tSV69Cc/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/f5t0tSV69Cc/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/f5t0tSV69Cc/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "DsCode",
liveBroadcastContent: "none",
publishTime: "2020-05-03T13:51:53Z",
},
},
{
kind: "youtube#searchResult",
etag: "R5meu5-392lbxJ7muZZswhzF4cY",
id: {
kind: "youtube#video",
videoId: "yZWkcasLUsU",
},
snippet: {
publishedAt: "2020-07-12T11:36:16Z",
channelId: "UCAYCXLokF9UNrGmblxKPRXA",
title:
"Salesforce JavaScript Developer 1 certification series | Session 2",
description:
"In this tutorial, you will learn the some key concepts of Javascripts like Objects, Functions, and Classes. I am covering the ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/yZWkcasLUsU/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/yZWkcasLUsU/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/yZWkcasLUsU/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "salesforce troop",
liveBroadcastContent: "none",
publishTime: "2020-07-12T11:36:16Z",
},
},
{
kind: "youtube#searchResult",
etag: "_CPrhU-b-2hHWl82KEW30z2RD48",
id: {
kind: "youtube#video",
videoId: "m0_e9hvLZpw",
},
snippet: {
publishedAt: "2021-01-03T14:42:32Z",
channelId: "UCw1W-TmjU6BGhAqFpJavSaw",
title: "How does JavaScript work? | Front-end interview question | Ep. 1",
description:
"This is the first video in the front-end interview series Notes : https://www.instagram.com/p/CGAYGNUAkJK/?igshid=zyz71j1lffn9 ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/m0_e9hvLZpw/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/m0_e9hvLZpw/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/m0_e9hvLZpw/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "codeWithSimran",
liveBroadcastContent: "none",
publishTime: "2021-01-03T14:42:32Z",
},
},
{
kind: "youtube#searchResult",
etag: "wvUQ4KHdBStaBlU0maMJHLiuZk4",
id: {
kind: "youtube#video",
videoId: "87PJYoH2Pl4",
},
snippet: {
publishedAt: "2020-11-01T14:30:00Z",
channelId: "UCsgLm2ikfsh3WJNA3J-VWNg",
title:
"ITI COPA JavaScript MCQ questions and answers most important of computer for ITI exam 2021 pdf",
description:
"ITI COPA JavaScript MCQ questions and answers most important of computer for ITI exam 2021 pdf Buy COPA MCQ E-Book ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/87PJYoH2Pl4/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/87PJYoH2Pl4/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/87PJYoH2Pl4/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "HEETSON",
liveBroadcastContent: "none",
publishTime: "2020-11-01T14:30:00Z",
},
},
{
kind: "youtube#searchResult",
etag: "jH30gdZKllIxDTXXVZCkQn60FJg",
id: {
kind: "youtube#video",
videoId: "OmyN7PHFgZc",
},
snippet: {
publishedAt: "2020-06-12T17:54:38Z",
channelId: "UC7dPAFz3U3VlWCzkXpaaDoA",
title: "JavaScript Complete tutorial in one video in Hindi 2020",
description:
"JavaScript Complete tutorial in one video in Hindi 2020 Download complete source code here ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/OmyN7PHFgZc/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/OmyN7PHFgZc/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/OmyN7PHFgZc/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "CSEtutorials",
liveBroadcastContent: "none",
publishTime: "2020-06-12T17:54:38Z",
},
},
{
kind: "youtube#searchResult",
etag: "g0PvKvRSq2SQxUaEg-ln5rpXCzU",
id: {
kind: "youtube#video",
videoId: "1WBjdiSum7o",
},
snippet: {
publishedAt: "2019-12-13T07:30:00Z",
channelId: "UCwfaAHy4zQUb2APNOGXUCCA",
title:
"Everything about Callback Function in Advanced JavaScript in Hindi 2020",
description:
"Welcome, CallBack Function Explained with Practical in Advanced JavaScript in Hindi. A callback is a function that is to be ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/1WBjdiSum7o/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/1WBjdiSum7o/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/1WBjdiSum7o/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Thapa Technical",
liveBroadcastContent: "none",
publishTime: "2019-12-13T07:30:00Z",
},
},
{
kind: "youtube#searchResult",
etag: "DysaSwVGStL9FqzrIqA3YUsMlj4",
id: {
kind: "youtube#video",
videoId: "_7mcsDjGqfw",
},
snippet: {
publishedAt: "2021-04-03T12:24:45Z",
channelId: "UCUxwowgxuhBPyVJg9Th5ydQ",
title:
"JavaScript mini project for beginners | HTML, CSS, JavaScript project in Hindi |#JavaScriptProject",
description:
"Hi guys, Background color changing Web application using HTML CSS and JS. Social: Instagram: ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/_7mcsDjGqfw/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/_7mcsDjGqfw/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/_7mcsDjGqfw/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Pradip Bedre",
liveBroadcastContent: "none",
publishTime: "2021-04-03T12:24:45Z",
},
},
{
kind: "youtube#searchResult",
etag: "2zZ3g20xiKCLt4q0GRUs6BLr1nA",
id: {
kind: "youtube#video",
videoId: "jS7Hdq3lloY",
},
snippet: {
publishedAt: "2021-06-10T15:52:31Z",
channelId: "UCzLINfcqOAHuymff9PZvCXQ",
title:
"Screen Recorder using JavaScript || js Screen Recorder 5 minutes 10 lines || simple recorder in js",
description:
"javascript #js #screenrecorder The video is about creating a screen recorder using JavaScript. I have used navigator media ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/jS7Hdq3lloY/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/jS7Hdq3lloY/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/jS7Hdq3lloY/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Stack Beast",
liveBroadcastContent: "none",
publishTime: "2021-06-10T15:52:31Z",
},
},
{
kind: "youtube#searchResult",
etag: "6EkQqwPTnPXymF4UThyC5M4BtgY",
id: {
kind: "youtube#video",
videoId: "gQMLQfh3PsM",
},
snippet: {
publishedAt: "2021-02-18T14:30:03Z",
channelId: "UCsgLm2ikfsh3WJNA3J-VWNg",
title:
"COPA JavaScript MCQ PDF Important Questions and answer of computer in Hindi for ITI Paper 2021 NCVT",
description:
"COPA JavaScript MCQ with PDF JS Most Important Questions and answers of computer in Hindi for ITI Exam Paper 2021 ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/gQMLQfh3PsM/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/gQMLQfh3PsM/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/gQMLQfh3PsM/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "HEETSON",
liveBroadcastContent: "none",
publishTime: "2021-02-18T14:30:03Z",
},
},
{
kind: "youtube#searchResult",
etag: "DCGtTI30aGSY_NSy6nP5QqXZH1I",
id: {
kind: "youtube#video",
videoId: "VuUMvzycXQY",
},
snippet: {
publishedAt: "2020-02-01T17:15:10Z",
channelId: "UCVKlUZP7HAhdQgs-9iTJklQ",
title: "Introduction To Odoo JavaScript Development",
description:
"odoojavascript #odoojstutorials #odoodevelopment #odoojs Odoo javascript Tutorial. Introduction to odoo js tutorials.",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/VuUMvzycXQY/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/VuUMvzycXQY/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/VuUMvzycXQY/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Odoo Mates",
liveBroadcastContent: "none",
publishTime: "2020-02-01T17:15:10Z",
},
},
{
kind: "youtube#searchResult",
etag: "_MLnNPxBgtu5PuRCOVx-IVhowxk",
id: {
kind: "youtube#video",
videoId: "CP2StusNckA",
},
snippet: {
publishedAt: "2021-03-04T09:31:14Z",
channelId: "UCB6SfKNLTX2AS0c-YjaBVlg",
title:
"Javascript tutorial in hindi | Private & Protected Properties and Methods",
description:
"Javascript tutorial in Hindi React Tutorials: https://www.youtube.com/playlist?list=PLEc8VTSzCemlTpCi5lWqpUu-jGaHwPBFx ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/CP2StusNckA/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/CP2StusNckA/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/CP2StusNckA/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Code For Life",
liveBroadcastContent: "none",
publishTime: "2021-03-04T09:31:14Z",
},
},
{
kind: "youtube#searchResult",
etag: "wsflr_43kYrv-Pcy9CX7JegSjs0",
id: {
kind: "youtube#video",
videoId: "UKlTKL_87AY",
},
snippet: {
publishedAt: "2019-06-04T03:05:55Z",
channelId: "UCSaA50dPTKM4XWZmZos8bpQ",
title:
"How to Create custom Google Homepage using HTML, CSS, JavaScript | गूगल जैसा होमपेज कैसे बनायें",
description:
"Doston agar ek acha project dhoondh rahe hai HTML, CSS, Javascript k liye to ek Google Homepage se behtar kuch nahi ho ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/UKlTKL_87AY/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/UKlTKL_87AY/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/UKlTKL_87AY/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Buzz2day Tech",
liveBroadcastContent: "none",
publishTime: "2019-06-04T03:05:55Z",
},
},
{
kind: "youtube#searchResult",
etag: "eJxK1pfORvd1f-I9Ox4-3v5ujCI",
id: {
kind: "youtube#video",
videoId: "lmfAsHBN_SA",
},
snippet: {
publishedAt: "2020-09-19T05:38:51Z",
channelId: "UCJdhVVBMrQFwCJBFmIRqedQ",
title: "JavaScript Dom & Events",
description:
"javascript #jsdom #jsevents This video will cover Javascript Dom & Javascript Events. Javascript DOM: - This section covers the ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/lmfAsHBN_SA/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/lmfAsHBN_SA/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/lmfAsHBN_SA/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Web Acrylic",
liveBroadcastContent: "none",
publishTime: "2020-09-19T05:38:51Z",
},
},
{
kind: "youtube#searchResult",
etag: "GDhwvPMffuuySz6yhkyve9sdezM",
id: {
kind: "youtube#video",
videoId: "jnWmMaASqLQ",
},
snippet: {
publishedAt: "2020-12-19T14:30:12Z",
channelId: "UCt898tIKjMzGDEYjtGUqTLw",
title:
"Js boolean type in Javascript for beginners in hindi by smart mind #38",
description:
"Js boolean type in Javascript for beginners in hindi by smart mind #38 About Video : in this video i will tell you about js boolean ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/jnWmMaASqLQ/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/jnWmMaASqLQ/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/jnWmMaASqLQ/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Smart Mind",
liveBroadcastContent: "none",
publishTime: "2020-12-19T14:30:12Z",
},
},
{
kind: "youtube#searchResult",
etag: "1cp0vpoe7I1UnN1VUygBH6CeRgU",
id: {
kind: "youtube#video",
videoId: "63fHgi2lvc0",
},
snippet: {
publishedAt: "2021-06-20T03:23:22Z",
channelId: "UCQlrZMdLxFJjbZWfXyquHjQ",
title: "How and When to Write Comments in Javascript?",
description:
"How and When to Write Comments in Javascript? Programming languages offer the option of leaving notes for yourself or others.",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/63fHgi2lvc0/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/63fHgi2lvc0/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/63fHgi2lvc0/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Learn Code With Mukund Programming Tutorials",
liveBroadcastContent: "none",
publishTime: "2021-06-20T03:23:22Z",
},
},
{
kind: "youtube#searchResult",
etag: "25rKBRqUiMSrKIihcrkuhb4sTzA",
id: {
kind: "youtube#video",
videoId: "LcJX1wAat6w",
},
snippet: {
publishedAt: "2021-06-16T07:30:01Z",
channelId: "UCsgLm2ikfsh3WJNA3J-VWNg",
title:
"javascript add one array to another adding elements contents COPA Practical exam question",
description:
"javascript add one array to another adding elements contents COPA Practical exam question More Helpful videos COPA Practical ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/LcJX1wAat6w/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/LcJX1wAat6w/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/LcJX1wAat6w/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "HEETSON",
liveBroadcastContent: "none",
publishTime: "2021-06-16T07:30:01Z",
},
},
{
kind: "youtube#searchResult",
etag: "z92ZJYNaHHEw1djHY3FYgQECVNc",
id: {
kind: "youtube#video",
videoId: "XLfAHEjIkro",
},
snippet: {
publishedAt: "2021-07-29T14:49:56Z",
channelId: "UCSu-kW0W1GXGHfG55GaDHig",
title:
"Objects, Prototypes and Inheritance in JavaScript | #javascript #programming #tutorial",
description:
"In this video, we will learn about Objects, different object creation patterns, prototypes and how inheritance is achieved in ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/XLfAHEjIkro/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/XLfAHEjIkro/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/XLfAHEjIkro/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "INQUBIO",
liveBroadcastContent: "none",
publishTime: "2021-07-29T14:49:56Z",
},
},
{
kind: "youtube#searchResult",
etag: "BNU68Q5FUbKHpp867F0zbHGLowQ",
id: {
kind: "youtube#video",
videoId: "j-o6T2XgkXY",
},
snippet: {
publishedAt: "2020-07-18T07:52:04Z",
channelId: "UCAYCXLokF9UNrGmblxKPRXA",
title:
"Salesforce JavaScript Developer 1 certification series | Session 3",
description:
"In this tutorial, you will learn about the Browser APIs and Events. I am covering the following topics in this session Document ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/j-o6T2XgkXY/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/j-o6T2XgkXY/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/j-o6T2XgkXY/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "salesforce troop",
liveBroadcastContent: "none",
publishTime: "2020-07-18T07:52:04Z",
},
},
{
kind: "youtube#searchResult",
etag: "VjA2Nplwa8fFQDzUbMvllxSSBjE",
id: {
kind: "youtube#video",
videoId: "cJnjqFpKqTs",
},
snippet: {
publishedAt: "2021-04-19T20:28:15Z",
channelId: "UCBug0wBPvz1Ag9TlGKsOUdw",
title:
"JavaScript ES5 and ES6 Functions Explained with Example in Hindi | JavaScript Tutorial #07 in Hindi",
description:
"Connect with me - GitHub - @codemohitpandey Facebook - @codemohitpandey Instagram - @codemohitpandey Twitter ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/cJnjqFpKqTs/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/cJnjqFpKqTs/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/cJnjqFpKqTs/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "CodeMohitPandey",
liveBroadcastContent: "none",
publishTime: "2021-04-19T20:28:15Z",
},
},
{
kind: "youtube#searchResult",
etag: "BSG5emQM48yGlMQfJNjJcnIvu8E",
id: {
kind: "youtube#video",
videoId: "sQKa_xUL8Iw",
},
snippet: {
publishedAt: "2021-08-30T11:26:20Z",
channelId: "UCniCFBcT8_Pmg4m49eEcXyg",
title: "4 easy ways to remove duplicate elements from Array - JavaScript",
description:
"In this video you will learn 4 easiest ways to remove duplicate elements from an Array in JavaScript. 1. Using filter function 2.",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/sQKa_xUL8Iw/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/sQKa_xUL8Iw/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/sQKa_xUL8Iw/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Code Canvas",
liveBroadcastContent: "none",
publishTime: "2021-08-30T11:26:20Z",
},
},
{
kind: "youtube#searchResult",
etag: "NTqVTDX1vwl-H0hGbojb2kyD6xU",
id: {
kind: "youtube#video",
videoId: "bIlqqzI4ByE",
},
snippet: {
publishedAt: "2020-05-08T17:17:25Z",
channelId: "UCWCcoBXOXpNMg0p8Qrn2l0g",
title:
"Responsive Navigation Menu Bar using HTML CSS and JAVASCRIPT | CSS Media Query | Responsive Navbar",
description:
"Hello friends, In this video i'm creating how to create responsive menu using html,css media query and javascript toggle class.",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/bIlqqzI4ByE/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/bIlqqzI4ByE/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/bIlqqzI4ByE/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "LearnDesign",
liveBroadcastContent: "none",
publishTime: "2020-05-08T17:17:25Z",
},
},
{
kind: "youtube#searchResult",
etag: "lWQ8ds9cJugQTJ9sa0LV0kQ0UZA",
id: {
kind: "youtube#video",
videoId: "syWIK6s1qxY",
},
snippet: {
publishedAt: "2021-03-17T04:45:03Z",
channelId: "UCdTmLyAfWrDUG1a3pnpKfgQ",
title:
"JavaScript Career | Web Development Career | Career in JavaScript | Steps to become JS Developer",
description:
"JavaScript Career | Web Development Career | Career in JavaScript | Steps to become JS Developer Hi Guys, in this video we ...",
thumbnails: {
default: {
url: "https://i.ytimg.com/vi/syWIK6s1qxY/default.jpg",
width: 120,
height: 90,
},
medium: {
url: "https://i.ytimg.com/vi/syWIK6s1qxY/mqdefault.jpg",
width: 320,
height: 180,
},
high: {
url: "https://i.ytimg.com/vi/syWIK6s1qxY/hqdefault.jpg",
width: 480,
height: 360,
},
},
channelTitle: "Kodemine",
liveBroadcastContent: "none",