Introduction to Arrays | JavaScript Tutorial in Hindi #16

preview_player
Показать описание
Let's understand what arrays are in JavaScript

python, C, C++, Java, JavaScript and Other Cheetsheets [++]:

►Learn in One Video[++]:

►Complete course [playlist]:

Follow Me On Social Media
Comment "#HarryBhai" if you read this 😉😉
Рекомендации по теме
Комментарии
Автор

On your request, I have revamped the channel membership and added more levels.

CodeWithHarry
Автор

///for loop
let mark=[22, 33, 44, 55, 66]
let n=mark.length;
for(let i=0; i<n; i++){
console.log(mark[i])
}

coDE
Автор

9:06 // QuickQuiz: Use a for loop to print a arry element
console.log("Using for loop")
for (let i = 0; i<marks_class_10.length; i++) {

}

anshumanpandey
Автор

Time Stamp: 9:32

/*
Quick Quiz of Array
*/

let marks = [55, 66, 88, 98, 55, 78];
let i;
for (i = 0; i < marks.length; i++) {
console.log(marks[i]);
}

imgullu
Автор

I'm a subscriber of harry from lsst few years and no doubt harry is the perfect and spectacular teacher. Respect from Pakistan. Every student in Pakistan is a fan of you.

afaqahmad
Автор

const marks = [60, 70, 80, 90, 85, 88, 95, 75, 66, 56];
// finding the average marks
let sum = 0;
for(let i = 0; i < marks.length; i++) {
sum = sum + marks[i];
}
console.log('The average of the marks is', sum/marks.length);

umarjanbhat
Автор

Thanks to teach us like a paid course without any extra money...❤️❤️❤️

abdur_
Автор

Sir you are great as after this video and solving the QQ I was succesfully able to run without bug in my program.Sir you are great👨‍💻😳😳Salute to you Hats of sir!
Ans QQ;
//Program that can store the marks and print it.
n = prompt("Enter the no. of studens:")
m = []
for (l=0; l<n; l++){
m[l] = prompt("Enter the marks the student")
}
for (p=0; p<m.length; p++){
console.log("marks of the student is", m[p])
}

educationalxentertainmente
Автор

Harry Sir, we need ultimate Django course with notes after this course 😊

MavericksBlue
Автор

// for loop
let marks= [89, 56, 25, 45, 84, 56, ]
let n=marks.length;
for (let i=0; i<n; i++){
console.log(marks[i])
}

adobecsworld
Автор

Best programming languages teacher in YouTube ❤️

JB_Ytube
Автор

//QuickQuiz Use a for loop to print a array element:
9:06
Languages=["english", "marathi", "hindi", "tamil", "telgu", "punjabi", "kanada"]


console.log("it is an indian language"+" "+Languages[i])
}

vaishnavichebale
Автор

let arr = [12, 23, 34, 45];
for (let i = 0; i < arr.length; i ++) {
console.log(arr[i]);
}

ritikranjan
Автор

Harry Bhai tumhare jesa koi nahi padha sakta literally .

azheruddin
Автор

9:07
console.log("Using for loop to print array")
marks=[23, 43, 54]
for (let i = 0; i<=marks.length; i++){
console.log(marks[i])}

hystudio
Автор

print array using for loop:-
let a=[11, 22, 33, 44, "avi"]
let n=a.length;
for(let i=0;i<n;i++){
document.write("<br>", a[i])
}

Avi_Tech
Автор

Salam Harry Bhai!!!
This course is really helping me a OP! 🔥

codedaily
Автор

const arr = [83, 38, 45, 22, null, "not present"];

for (let i = 0; i < arr.length; i++) {
const element = arr[i];
console.log(element)
}

HydraulicPress.
Автор

as i am going through the playlist at first i found it confusing and things are clear to me as i go on, and i even i repeated the video for better understanding and i thank you for your efforts and i would like to tell you the "audience that if they found it little hard so watch the video 2 times thats all thank you"....

adilsk
Автор

time stamp:9:32 quiz
let marks=[12, 34, 45, 56]
for(let a in marks){
console.log(marks[a])
}

saqib