javascript bangla tutorial 71 : map and filter array function

preview_player
Показать описание
⭐️ Video Contents ⭐️
⌨️ (00:00​​) Intro
⌨️ (00:07) forEach function in javascript
⌨️ (01:55) map function in javascript
⌨️ (03:44) filter function in javascript
⌨️ (05:44) outro

🛑 Web development? checkout following playlists :

🛑 Programming languages? check out following playlists:

🛑 Android development? check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out following playlists-

🛑 CSE Students? checkout following playlists :

🛑 MS Office? Trying to learn MS office to improve your skill? checkout following playlists :

#javascript #anisul_islam #javascript_bangla_tutorial #web_development #bangla_web_development #bangla_javascript #javascript_anisul_islam #anisul_islam_javascript #es6_anisul_islam #html #html_anisul_islam #css #js #javascript_projects #projects #js_es6 #javascript_es6
Рекомендации по теме
Комментарии
Автор

Super. Like from India 🇮🇳. You have done a great job .

shankumondal
Автор

very important class for make a project!!

mohiburrahman
Автор

আপনার মহান উদ্যোগের মাধ্যমে তথ্য প্রযুক্তি প্রেমিদের উন্নয়ন ঘটুক। অনেক ধন্যবাদ

BarunNafak
Автор

javascript niye real project chai, Sir

dev-mahir
Автор

Your teaching methodology is very awesome ... All the best ....

linkinlinuxtanay
Автор

fontin and backend ekta project dile khub upokar hoito

baijidhossain
Автор

আসসালামু আলাইকুম
সার আশা করি ভাল আছেন।আমি আপনার ভিডিও গুলা খুব ভাল ভাবে বুজতে পারি।আমি React Native দিয়ে Android Development করতে চাই।ইন্টারনেটে তেমন ভাল বাংলা টিউটোরিয়াল নাই।তাই আপনি যদি React Native নিয়ে একটি বাংলা টিউটোরিয়াল সিরিজ তৈরি করতেন আমি সহ সবাই উপকৃত হতাম।আশা করি বিষয়টি ভেবে দেখবেন।ধন্যবাদ প্রিয় সার।

amdadulhaque
Автор

একটি অ্যানড্রয়েড কাষ্টম কী বোর্ড তৈরির টিউটোরিয়াল তৈরি করার অনুরোধ থাকলো।

arzyathanchangha
Автор

make a video on how to build an html table with JSON object and how to find values from that table and how to count length of rows of that table and how to find exact value and alert will be " data exist" . thanks. it very important for me. i hope reply from you (bangladesh).

tazulislam
Автор

//foreach function use:
var numbers = [5, 6, 7, 8];
var squareNumbers = [];

numbers.forEach(function(x){
squareNumbers.push(x*x);
})



//map function use:
var numbers = [5, 6, 7, 8];
var squareNumbers =numbers.map(function(x){
return x*x;
})



//filter function use:
var numbers = [22, 65, 4, 5, 70, 8];
var newNumbers =numbers.filter(function(x){
return x>10;
})
console.log(newNumbers);

jscreation
Автор

JavaScript sesh hoile complete ekta project diyen vai JS ar upor ❤️❤️

swadeshsaha
Автор

for each function, map er concept diye korar try korechi, but ans ashe undefined.
.
.
var num=[1, 2, 3, 4];
var sqr=num.forEach(function(x){
return x*x
})
console.log(sqr)

mdhadiuzzamanrifat