JavaScript Multidimensional Arrays Tutorial in Hindi / Urdu

preview_player
Показать описание
In this tutorial you will learn javascript multidimensional array Hindi, Urdu.You can learn how to create a 2d array in javascript which we can show tabular form of data.

JavaScript Tutorial Playlist

Follow us on Facebook

Follow us on Twitter

#javascript #webdevelopment #webdesign
Рекомендации по теме
Комментарии
Автор

I have never found a good tutor like you in my life. Thank you Sir

insightofindia
Автор

kash 1 saal phly apka channel per ata toh mera 1 saal zaya nahe hota thank you soo much but ha 1 saal zaya nahe howa q ky waha sy bht kuch seekh kr abb apka lectures sahe sy samjh aaa rahy hy thank yhou

Muhammadwaseemkha
Автор

Bahut sare videos dekhne ke baad bas aapka video dekh ke samjh aaya, thanks 🙏❤

prashantrajbhar
Автор

Nice explanation sir, it's like to understand, the way you teach, require very less amount of energy to understand what you try to make us understand always. Thank u sir, keep it up. Nd God Bless U.😍😍😍😍

krushnabelokar
Автор

dear sir its awesome for understansding but sir include some real life type task that's would be great

AmitKumar-kvec
Автор

sir, its the simplest way to explain array .Thanks alot sir

ankitgandhi
Автор

Nice explanation sir, it's like to understand, the way you teach, require very less amount of energy to understand what you try to make us understand always. Thank u, sir, keep it up. ALLAH Bless U.

darkgaming
Автор

V.Good and simple way to explain array Thanks.
(Dar From Pakistan)

ishaqsg
Автор

your all videos contain deep knowledge so much for making such awsm

akactivekarishmagroupbhila
Автор

Sir you are really nice teacher 😉😉🤠 and give us more understandable and intrusting program of js.god bless you and love you lot 😘😘

arjankapdi
Автор

Superb Sir... I have no words to express my gratitude sir 🙏 ✨️ ❤️

siddharthasaxena
Автор

wow..i like your teaching style...thank-you again sir

deepakvishwakarma
Автор

I will try sir. How to push the elements in two dimensional arrays?

rthosarrohini
Автор

Bhai you have made the life easy. Thank you so much.

naveenpawar
Автор

Tanks you sir for a Full Html Css Bootstrap & java Script Tutotrail

INF-world
Автор

sir apke sikhana ka trika very very good

pankajkumar-gehq
Автор

That was awesome. But ek chiz samajhme nehi aya ji

Apne jab a ko condition dia
a<x.length thik hain

Par, b<x[a].length chiz samajhme nehi aya.kiyuki x[a] toh x.length se chota hain.toh phir x.length jab 5 hora hain although column par 5 seh jyada value add karu toh print ho rha hain. Reason bro??

jayantidas
Автор

Your teaching style Superb sir .For zero to hero students .

shailesh__learning
Автор

Please add projects at every tutorial end..by using all terms..like php project, web dev project.

Colorbowl
Автор

Hi
I have a Question Please Answer
in the for loop you took max 4 value (A<4) but when I take one more record like (a<5) then I am getting the last value of every array record is undefined.
how can i hide it ?
and it is working fine with ary.length property means manually its not perfect but dynimically it is working fine
and in the second loop if i take b <ary.length property but you have used b<ary[a].length
what is the use of this? is this any other way of representing it ????
var ary = [["Jonny", 19, "Course", "Gender"],
["Mickey", 20, "BA", "Male"],
["Sunitha", 22, "B.sc", "Female"],
["Rakeha", 23, "B.com", "Female"],
["Mahesh", 18, "BCA", "Male"],
["Moiz", 24, "BCA", "Male"]
];

// document.write(ary[4][0]);
// document.write(ary.length);



document.write("<table border='1px solid #e7e7e7' cellspacing=0 cellpadding=0>");
for(k = 0; k < 5; k++){
document.write("<tr>");
for(l = 0; l < 5; l++){
document.write("<td style='padding:4px;'>" + ary[k][l] + "</td>");
}
document.write("</tr>");
}
document.write("</table>");
Thank you for Nicely Explained

crazyshorts