Programming For Beginners
Programming For Beginners
  • 601
  • 966 237
JavaScript Tutorial 25 - Exercise on Arrays in JavaScript | Programming For Beginners
JavaScript Tutorial 25 - Exercise on Arrays in JavaScript | Programming For Beginners
In this video by Programming for beginners we will see JavaScript Tutorial 25 - Exercise on Arrays in JavaScript
JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn language to become a web developer. You can use JavaScript in frontend and backend technologies as well. This JavaScript tutorial series of JavaScript course will help you to build the foundation for you to become a better web developer.
Follow below steps to complete the exercise:
This exercise is about creating multiplication table using arrays
1. Create an array of elements having numbers 1 to 10
2. Create a variable with initial value as 5
3. Loop through the array elements to display the multiplication table of the number in variable
4. Change the value of variable and display the table only with even numbers
==========
JavaScript Tutorial Playlist:
czcams.com/play/PLhyraTKIsw58sm538sUXpYByPScqBj6su.html
HTML CSS Projects Playlist:
czcams.com/play/PLhyraTKIsw59GaxKI1L-PJuaK6HNLjOa0.html
Complete CSS Tutorial for Beginners Playlist:
czcams.com/play/PLhyraTKIsw59LnnxzT1-TAKYU4_rf_UW1.html
Complete HTML Tutorial for Beginners Playlist:
czcams.com/play/PLhyraTKIsw5_Po6C1xg3lgNNIY0Hl_8tR.html
Python Programs for Beginners Playlist:
czcams.com/play/PLhyraTKIsw5-Hfkk-pGFmtyn1xYqKdKw8.html
Python Tutorial for Beginners Playlist:
czcams.com/play/PLhyraTKIsw5_k9AyBNZh6YZhkX4eqP7Je.html
Java Tutorial for Beginners Playlist:
czcams.com/play/PLhyraTKIsw5_WemVMvshNm-0aC7zfISCO.html
All Java Programs Playlist:
czcams.com/play/PLhyraTKIsw59nQJKvZTKmNK2aMxHwvLOa.html
What is JavaScript ?
JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. It is also known as the scripting language for webpages. It is well-known for the development of web pages, and many non-browser environments also use it.
JavaScript is a weakly typed language (dynamically typed). JavaScript can be used for Client-side developments as well as Server-side developments. JavaScript is both an imperative and declarative type of language. JavaScript contains a standard library of objects, like Array, Date, and Math, and a core set of language elements like operators, control structures, and statements.
- Client-side: It supplies objects to control a browser and its Document Object Model (DOM). Like if client-side extensions allow an application to place elements on an HTML form and respond to user events such as mouse clicks, form input, and page navigation. Useful libraries for the client side are AngularJS, ReactJS, VueJS, and so many others.
- Server-side: It supplies objects relevant to running JavaScript on a server. For if the server-side extensions allow an application to communicate with a database, and provide continuity of information from one invocation to another of the application, or perform file manipulations on a server. The useful framework which is the most famous these days is node.js.
- Imperative language - In this type of language we are mostly concerned about how it is to be done. It simply controls the flow of computation. The procedural programming approach, object, oriented approach comes under this as async await we are thinking about what is to be done further after the async call.
- Declarative programming - In this type of language we are concerned about how it is to be done, basically here logical computation requires. Her main goal is to describe the desired result without direct dictation on how to get it as the arrow function does.
How to Link JavaScript File in HTML ?
JavaScript can be added to HTML file in two ways:
Internal JS: We can add JavaScript directly to our HTML file by writing the code inside the script tag. The script tag can either be placed inside the head or the body tag according to the requirement.
External JS: We can write JavaScript code in another files having an extension.js and then link this file inside the head tag of the HTML file in which we want to add this code.
CZcams Gears:
Microphone: amzn.to/3iIk5K3
Mouse: amzn.to/35irmNF
Laptop: amzn.to/3iG0jyD
#JavaScriptTutorial #JavaScript #JavaScriptCourse #webdevelopment #programmingforbeginners
============================
LIKE | SHARE | COMMENT | SUBSCRIBE
Thanks for watching :)
zhlédnutí: 32

Video

CSS Practice Exercises for Beginners | CSS Course by Programming For Beginners
zhlédnutí 19Před 4 hodinami
CSS Practice Exercises for Beginners | CSS Course by Programming For Beginners In this video by Programming for beginners we will see CSS Practice Exercises for Beginners | CSS Course by Programming For Beginners. CSS Full Course in One Shot by Programming For Beginners HTML and CSS is a must for students and working professionals who want to make a career in web development related technologie...
JavaScript Tutorial 24 - Array Methods in JavaScript | Programming For Beginners
zhlédnutí 18Před 4 hodinami
JavaScript Tutorial 24 - Array Methods in JavaScript | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 24 - Important Array Methods in JavaScript JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn language to be...
JavaScript Tutorial 23 - Arrays in JavaScript | Programming For Beginners
zhlédnutí 26Před 7 hodinami
JavaScript Tutorial 23 - Arrays in JavaScript | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 23 - Arrays in JavaScript JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn language to become a web developer. Yo...
JavaScript Tutorial 22 - break and continue statements in JavaScript
zhlédnutí 20Před 9 hodinami
JavaScript Tutorial 22 - break and continue statements in JavaScript | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 22 - break and continue statements in JavaScript JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and mus...
JavaScript Tutorial 21 - while loop in JavaScript | Programming For Beginners
zhlédnutí 29Před 12 hodinami
JavaScript Tutorial 21 - while loop in JavaScript | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 21 - while loop in JavaScript JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn language to become a web devel...
JavaScript Tutorial 20 - Exercise using Functions in JavaScript | Programming For Beginners
zhlédnutí 39Před 19 hodinami
JavaScript Tutorial 20 - Exercise using Functions in JavaScript | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 20 - Exercise using Functions in JavaScript JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn la...
10 HTML CSS Projects for Beginners | HTML CSS Tutorial - Programming For Beginners
zhlédnutí 814Před 21 hodinou
10 HTML CSS Projects for Beginners | HTML CSS Tutorial & Source Code by Programming For Beginners In this video by Programming for beginners we will see 10 HTML CSS Projects for Beginners. HTML CSS Projects in One Shot by Programming For Beginners HTML and CSS is a must for students and working professionals who want to make a career in web development related technologies specifically for fron...
JavaScript Tutorial 19 - Recursive Function in JavaScript (Recursion)
zhlédnutí 22Před 21 hodinou
JavaScript Tutorial 19 - Recursive Function in JavaScript | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 19 - Recursive Function in JavaScript JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn language to be...
JavaScript Tutorial 18 - Arrow Function in JavaScript | Programming For Beginners
zhlédnutí 66Před dnem
JavaScript Tutorial 18 - Arrow Function in JavaScript | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 18 - Arrow Function in JavaScript JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn language to become a w...
JavaScript Tutorial 17 - Functions in JavaScript | Programming For Beginners
zhlédnutí 25Před dnem
JavaScript Tutorial 17 - Functions in JavaScript | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 17 - Functions in JavaScript JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn language to become a web develop...
JavaScript Tutorial 16 - Ternary Operator in JavaScript (Conditional)
zhlédnutí 29Před dnem
JavaScript Tutorial 16 - Ternary Operator in JavaScript (Conditional) | Programming For Beginners In this video by Programming for beginners we will see JavaScript Tutorial 16 - Ternary Operator in JavaScript (Conditional) JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and m...
JavaScript Tutorial 15 - Exercise to Greet Based on time in JavaScript
zhlédnutí 23Před 14 dny
JavaScript Tutorial 15 - Exercise to Greet Based on time in JavaScript
JavaScript Tutorial 14 - Switch Statement in JavaScript | Programming For Beginners
zhlédnutí 32Před 14 dny
JavaScript Tutorial 14 - Switch Statement in JavaScript | Programming For Beginners
CSS Tutorial for Beginners | CSS Full Course with 10 PROJECTS & NOTES
zhlédnutí 490Před 14 dny
CSS Tutorial for Beginners | CSS Full Course with 10 PROJECTS & NOTES
JavaScript Tutorial 13 - If & else Conditional Statements in JavaScript
zhlédnutí 27Před 14 dny
JavaScript Tutorial 13 - If & else Conditional Statements in JavaScript
JavaScript Tutorial 12 - Data Types in JavaScript | Programming For Beginners
zhlédnutí 43Před 14 dny
JavaScript Tutorial 12 - Data Types in JavaScript | Programming For Beginners
JavaScript Tutorial 11 - String in JavaScript | Programming For Beginners
zhlédnutí 40Před 14 dny
JavaScript Tutorial 11 - String in JavaScript | Programming For Beginners
JavaScript Tutorial 10 - Exercise on Arithmetic Operators in Javascript
zhlédnutí 38Před 21 dnem
JavaScript Tutorial 10 - Exercise on Arithmetic Operators in Javascript
JavaScript Tutorial 9 - Comparison Operators in Javascript | Programming For Beginners
zhlédnutí 32Před 21 dnem
JavaScript Tutorial 9 - Comparison Operators in Javascript | Programming For Beginners
JavaScript Tutorial 8 - Assignment Operators in Javascript | Programming For Beginners
zhlédnutí 37Před 21 dnem
JavaScript Tutorial 8 - Assignment Operators in Javascript | Programming For Beginners
JavaScript Tutorial 7 - Arithmetic Operators in Javascript | Programming For Beginners
zhlédnutí 31Před 21 dnem
JavaScript Tutorial 7 - Arithmetic Operators in Javascript | Programming For Beginners
JavaScript Tutorial 6 - Variables in JavaScript (var vs let vs const) | Programming For Beginners
zhlédnutí 45Před 28 dny
JavaScript Tutorial 6 - Variables in JavaScript (var vs let vs const) | Programming For Beginners
JavaScript Tutorial 5 - Exercise: Find sum of Numbers Entered by user in JavaScript
zhlédnutí 56Před měsícem
JavaScript Tutorial 5 - Exercise: Find sum of Numbers Entered by user in JavaScript
JavaScript Tutorial 4 - Output in JavaScript | Programming For Beginners
zhlédnutí 50Před měsícem
JavaScript Tutorial 4 - Output in JavaScript | Programming For Beginners
JavaScript Tutorial 3 - DOM Selectors to find HTML Elements in JavaScript
zhlédnutí 75Před měsícem
JavaScript Tutorial 3 - DOM Selectors to find HTML Elements in JavaScript
JavaScript Tutorial 2 - Change HTML Content using JavaScript innerHTML
zhlédnutí 67Před měsícem
JavaScript Tutorial 2 - Change HTML Content using JavaScript innerHTML
JavaScript Tutorial 1 - Introduction, NodeJS Installation & Hello World Example
zhlédnutí 188Před měsícem
JavaScript Tutorial 1 - Introduction, NodeJS Installation & Hello World Example
HTML CSS Project 10 - Simple Registration Form in HTML & CSS
zhlédnutí 1,7KPřed měsícem
HTML CSS Project 10 - Simple Registration Form in HTML & CSS
HTML CSS Project 9 - Instagram Analytics Data Icons in HTML & CSS
zhlédnutí 583Před měsícem
HTML CSS Project 9 - Instagram Analytics Data Icons in HTML & CSS

Komentáře

  • @meghnadmahata5411
    @meghnadmahata5411 Před 20 minutami

    For 3200 year this code show Leap year but this is not a Leap Year

  • @Idealbruda
    @Idealbruda Před dnem

    Is it necessary to write result =0 , can't we just start from switch

  • @ashnayadav2777
    @ashnayadav2777 Před 2 dny

    Good job

  • @dharunyaponnusamy434

    how to bring python compiler in vsc?

  • @Deepak-ls1yt
    @Deepak-ls1yt Před 2 dny

    Super bro ❤

  • @sharmachandni5216
    @sharmachandni5216 Před 2 dny

    Such a useful lecture, keep making these videos. Really helped me alot 🎉

  • @Deepak-ls1yt
    @Deepak-ls1yt Před 2 dny

    Super bro ❤

  • @lancestorm808
    @lancestorm808 Před 5 dny

    Great video, bro. Very good explanation.

  • @sulemani786
    @sulemani786 Před 5 dny

    Wow mashallah

  • @AparajitaaSen
    @AparajitaaSen Před 5 dny

    Helped a lot...gonna suggest to my friends thanks sir❤

  • @atansaritoys2111
    @atansaritoys2111 Před 6 dny

    how to create fix click counting in html and css that can not be change when website torn off means if we click 20 times then when we open website again the no of clicks remain 20 please guide me

  • @atansaritoys2111
    @atansaritoys2111 Před 6 dny

    how to create fix click counting in html and css that can not be change when website torn off means if we click 20 times then when we open website again the no of clicks remain 20

  • @adnanali3972
    @adnanali3972 Před 6 dny

    Excellent as always 🫡🔥🔥

  • @QinisoVelenkosini
    @QinisoVelenkosini Před 6 dny

    Keep the good work

  • @SyedShahmirSalman
    @SyedShahmirSalman Před 7 dny

    Brother your videos are verry underrated. Keep it up!

  • @hsglator7135
    @hsglator7135 Před 7 dny

    Hey, I have been told to write the first 1000 numbers of the series, and even after using the "long" data type, I'm still getting an overflow in the output. What should I do?

  • @harshadalokare1144
    @harshadalokare1144 Před 7 dny

    It help me a lot thankyou 👍❤️

  • @user-rs3bi1uu4t
    @user-rs3bi1uu4t Před 7 dny

    Sir how to make calculator work

    • @gaurav_saha16
      @gaurav_saha16 Před 7 dny

      For that you'll have to learn JavaScript.

    • @programmingforbeginners7392
      @programmingforbeginners7392 Před 7 dny

      javascript is required to add functionality watch this series to learn javascript: czcams.com/play/PLhyraTKIsw58sm538sUXpYByPScqBj6su.html

  • @VictorVictory-te2ij

    Thank you so very much Sir!

  • @divyachinmay5354
    @divyachinmay5354 Před 8 dny

    My exam is in 24 hrs...Doing this

  • @adnanali3972
    @adnanali3972 Před 8 dny

    criminally underrated channel🫡

    • @programmingforbeginners7392
      @programmingforbeginners7392 Před 7 dny

      Thank you 😊

    • @adnanali3972
      @adnanali3972 Před 7 dny

      @@programmingforbeginners7392 started css a month ago following your playlist.They are just unbelievable easy and short🔥. Waiting for javascript course . Lauch it asap

  • @sagunadhikari7664
    @sagunadhikari7664 Před 8 dny

    Thanks for the video 💗

  • @sagunadhikari7664
    @sagunadhikari7664 Před 8 dny

    great video viewed most channel but you explain very well. loved it and thank you so much 💗

  • @dishita_22
    @dishita_22 Před 9 dny

    THANKYOUUUUUUUUU!!!!

  • @AmooreTransformers
    @AmooreTransformers Před 10 dny

    great lecture

  • @srikanthkaredla
    @srikanthkaredla Před 12 dny

    Do not remove code, keep it and run it in another notebook. It will be good to compare. Everytime you are removing. Not good.

  • @L-Surya
    @L-Surya Před 12 dny

    what is tc and sc of this code

  • @DAKSHSINGH-f9v
    @DAKSHSINGH-f9v Před 14 dny

    Date being the major attraction

  • @adarshranjan9629
    @adarshranjan9629 Před 14 dny

    saala logic hi nhi build ho paata hai

  • @NUMBER-_-ONE
    @NUMBER-_-ONE Před 15 dny

    God job broo🎉👌

  • @khushboo-eq9yl
    @khushboo-eq9yl Před 15 dny

    Sir aaj3 as ek trick he or use sell kar sakte ho csc bale ko

  • @khushboo-eq9yl
    @khushboo-eq9yl Před 15 dny

    Sir aako fayda ho jayega mujhe bhi

  • @khushboo-eq9yl
    @khushboo-eq9yl Před 15 dny

    Can you helm me sir

  • @programmingforbeginners7392

    CSS Tutorial for beginners with 10 PROJECTS & Notes Timestamps: 00:00 Introduction to CSS 09:05 Inline vs Internal vs External CSS 19:44 Types of CSS Selectors 36:43 Color values in CSS 47:38 Background Property in CSS 01:01:51 Border Property in CSS 01:08:56 Margin Property in CSS 01:23:42 Padding Property in CSS 01:36:47 height, width and max-width properties in CSS 01:45:11 Exercise on border, margin, padding in CSS 01:55:33 Box Model in CSS 02:05:04 Outline Property in CSS 02:12:20 Text Color and Alignment Property in CSS 02:21:48 Text Decoration Property in CSS 02:30:48 Text Transformation Property in CSS 02:35:36 Text Spacing Property in CSS 02:42:25 Text Shadow Property in CSS 02:48:48 Fonts in CSS 02:59:36 Icons in CSS 03:05:36 Exercise on text properties, font and icons in CSS 03:15:33 Link Styling Properties in CSS 03:24:11 List Styling Properties in CSS 03:35:30 Table Styling Properties in CSS 03:50:00 Display Property in CSS 04:05:51 Exercise to Create Navigation Bar in CSS 04:16:45 Position Property in CSS 04:37:00 z index Property in CSS 04:44:42 Overflow Property in CSS 04:50:56 float and clear Property in CSS 05:03:57 Exercise on z-index, overflow, float, clear Properties in CSS 05:16:04 Horizontal and Vertical Align in CSS 05:27:21 Combinators in CSS 05:37:09 Pseudo classes in CSS 05:46:32 Pseudo elements in CSS 05:54:31 Opacity or Transparency in CSS 06:03:20 Vertical Navigation Bar in CSS 06:13:27 Horizontal Navigation Bar in CSS 06:22:34 Create Dropdown Options in CSS 06:35:46 Attribute Selectors in CSS 06:44:56 Exercise on Align, pseudo classes 06:56:22 Styling Forms in CSS.wmv 07:09:14 Counters in CSS for Automatic Numbering 07:20:29 Length Units in CSS 07:41:29 Specificity and Priority in CSS 07:51:53 !important Rule in CSS 08:01:42 Math Functions in CSS 08:10:10 Rounded Corners in CSS 08:16:10 Color Gradients in CSS 08:29:48 Making Pie Chart in CSS 08:36:50 Text Shadow in CSS 08:46:39 Box Shadow in CSS 08:56:07 Text Effects in CSS 09:04:47 2D Transform Property in CSS 09:19:20 3D Transform Property in CSS 09:29:10 Transition Property in CSS 09:40:37 Animations in CSS 09:53:45 Loading Animation in CSS 10:00:56 Customized Tooltip Text in CSS 10:15:51 Styling Images in CSS 10:27:22 Image Hover Overlay in CSS 10:33:53 Image Reflection in CSS 10:39:45 object-fit Property in CSS 10:46:20 object-position Property in CSS 10:51:55 mask-image Property in CSS 10:57:22 Button Styling in CSS 11:13:29 Pagination in CSS 11:22:30 Multiple Columns in CSS 11:30:36 Resize Property in CSS 11:35:04 Variables in CSS using var() function 11:46:49 box sizing property in CSS 11:53:23 Flexbox in CSS 12:22:52 Media Queries in CSS 12:31:12 Flex Responsive in CSS 12:37:48 Creating Navigation Bar using Flexbox in CSS 12:47:25 Simple Responsive Design using Flexbox in CSS 13:01:24 Grid Layout in CSS 13:26:01 Exercise on Grid Layout in CSS Making Sidebar & Content 13:35:30 Center HTML Element inside div Element in CSS 13:42:46 optional & required pseudo class in CSS 13:51:40 HTML CSS Project 1 14:04:04 HTML CSS Project 2 14:14:54 HTML CSS Project 3 14:25:43 HTML CSS Project 4 14:31:55 HTML CSS Project 5 14:41:36 HTML CSS Project 6 14:52:46 HTML CSS Project 7 15:06:14 HTML CSS Project 8 15:21:17 HTML CSS Project 9 15:31:27 HTML CSS Project 10

  • @pikkymario8982
    @pikkymario8982 Před 16 dny

    DO TIMESTAMPS😏

  • @maithilisinghbhadoriya1904

    nice explanation Thank you

  • @shrustipatil991
    @shrustipatil991 Před 17 dny

    this helped a lot, thankyou genius human being

  • @deadpool-wp1eq
    @deadpool-wp1eq Před 18 dny

    Subbed

  • @Allyspinkyworld
    @Allyspinkyworld Před 18 dny

    thanks for the expleanantion it was very easy to understand the topic after watching your video 🙂

  • @VelusamyVelu
    @VelusamyVelu Před 18 dny

    Hi, while I'm an experienced Java developer, I find your 'Programming for Beginners' series very helpful. In the video at the 36-second mark czcams.com/video/FuuNe2dAqfY/video.html, you mention 'const str = 'Programming...''. Just wanted to point out that this is actually a constant, not a variable. Keep up the great work with the series! I really enjoy it.

  • @praveenrajchintada6781

    out of the div we provide diff p tags, then how to make hover for 2nd or 3rd p tag

  • @ganeshkrishnaiaha8104

    Sir string and array program are not covered so plz can u cover those also sir

  • @ganeshkrishnaiaha8104

    Sir, can u teach playwright tool for API automation - Api testing

  • @MohammadShafi194
    @MohammadShafi194 Před 19 dny

    this is really helpful

  • @gayatrishirishkhairnar2341

    In eclipse ide it is not considering string after a space means i took string from user i.e java is super so it just reversed java only not other words

  • @Straight_Hustle.
    @Straight_Hustle. Před 20 dny

    Sir I need to know how much java is suitable to start DSA preparation ? I have done core Java topics as of now.

  • @Sjjsjam
    @Sjjsjam Před 21 dnem

    Sir make oneshot of css

  • @Dr.K.SaravanakumarPhD
    @Dr.K.SaravanakumarPhD Před 21 dnem

    It is really very informative and useful video. I thank you for this valuable presentation and i will play this video to my students.

    • @programmingforbeginners7392
      @programmingforbeginners7392 Před 20 dny

      thank you so much. find all my videos on python along with programs for practice in this playlist and share with your students: Link: czcams.com/play/PLhyraTKIsw5_k9AyBNZh6YZhkX4eqP7Je.html

  • @MUHAMMADOMAR-hf6vr
    @MUHAMMADOMAR-hf6vr Před 22 dny

    Thanks

  • @heptagaming2k5
    @heptagaming2k5 Před 23 dny

    You are doing a great job brother, keep going 🎉🔥