javascript bangla tutorial 8 : Library functions for string

preview_player
Показать описание
⭐️ Video Contents ⭐️
⌨️ (00:00​​) Intro
⌨️ (00:07) how to find string length?
⌨️ (02:04) Prompt()
⌨️ (03:21) charAt()
⌨️ (09:03) Task2
⌨️ (10:14​​) 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 #css_anisul_islam #html #html_anisul_islam #css #js #javascript_projects #projects
Рекомендации по теме
Комментарии
Автор

Task : 02

var firstName = prompt("Enter your first name:");
var lastName = prompt("Enter your last name:");
var fullName = firstName + lastName;
document.write(fullName);

document.write(" Length of fullName: "+fullName.length);


nazifasadia
Автор

in this tutorial We learn More Library function for string. In first time we How to count all character with Lenght function. 2nf time we known that How to change character to Lowercase or uppercase. Thirdly We know How to concatenation variable. In the last We know about slice function. Thanks Anis bhai for This tutorial I am new in Javascript. I am attentively saw all Tutorial.

mannanabc
Автор

ভাই আমি আপনার Html Css টিউটিরিয়াল দেখেছি এখন javascript আসছি আপনি অনেক সুন্দর করে উপস্তাপনা করেন
এই জন্য আপনাকে অসংখ্য ধন্যবাধ ভাই আমরা একটি Request হল যে ভিডিতে এই ভাবে একটি Task দিবেন

alaminkhan
Автор

valo laglo apnar vedio golo dekhe sob e bujte parsi... age onnek jotil mone hoto but apnar vediota dekhe onnek sohoj mone hocche.... love u vaia...

AlAmin-isxi
Автор

Watching all of your javascript video. And these seem to be understandable. Hoping for more video. Thank You, sir.

kiwiabarua
Автор

আসসালামুয়ালাইকুম ওয়ারহমাতুল্লহি ওয়াবারকাতুহ, আশা করি স্যার ভালো আছেন।
আলহামদুলিল্লাহ।
Task-2 কমপ্লিট করলাম।
var nam1 = prompt("enter here your first name ");
var nam2 = prompt("enter here your last name");

var sum1 = nam1+nam2;
var sum2 = sum1.length;
document.write(sum2+"<br/>");

var sum3 = sum1.toUpperCase();
document.write(sum3+"<br/>");

document.write(nam2);

Al-Balag
Автор

sir task ta korlam.... Thanks sir for task onek bar korbar por valo koira kor tay par valo lagta say

md.sohelrana
Автор

I love your videos and they inspired me to create my own, they may not be as good as yours but I am getting there! Keep it up!

TGK_Minecraft
Автор

Task-02
<script>
alert("Are you want to visite this site?");
var text1=prompt("Fast Name : ");
var text2=prompt("Last Name : ");
var text=text.concat(text2);
document.write(text);
</script><br><br>
<script>
var fname=("Jamil");
var lname=(" Hossain ");
var fullname=(fname+lname);
document.write(fullname);



document.write(fullname.slice(2, 5));
</script>

Thank u via for creating this video.

kmtv
Автор

Vdo gula osadaron, , , , bujte kono problem hoy na❤️😊

tarikulislam
Автор

vai valobasha roilo🥰🥰 mon teke apni asole e ekjon mohan manush

jei code dekhe voi petar seita ekhon amr kache korte moje e lage


var fristName = prompt("enter your frist name ");
var lastName = prompt("enter your last name ")

var fullname =(fristName + lastName);

var upcase = fullname.toUpperCase();

console.log("your total caracter name " + fullname.length);

document.write(upcase);

var all = fullname.slice(0, 5);
document.write(all);

Ibrahimk
Автор

I tried this by adding strings and html tags on document and variables too, and It works!
Thank you sir for these amazing tutorial series. 🥰

<script>

// - First way /
var nam = "Bangladesh";
document.write(nam.length);

// -Second way /
var text = "United States"
var len = text.length;
document.write("<br> The length of text is " + len);

// length of user's input /
var name = prompt("Enter your name: ");
document.write("<br> Number of character : " + name.length);

// -CharAt /
var text ="Bangladesh";
document.write("<br>" + text.charAt(2));

// -toUppercase /
var con ="America";
con = con.toUpperCase();
document.write("<br>" + con);

// -Concatenate /
var state = "<br>" + "Russia";
var words = " is a powerful country";


// -Slice /
con1 = "<br>" + con.slice(3, 6);;
document.write(con1);

</script>

rejwanislam
Автор

Task:2
var firstname=prompt('Enter Your First Name:');
var lastname=prompt('Enter Your Last Name: ');
var Fullname=(firstname + ' ' +lastname);
var
document.write('Your Full Name is: '+ Fullname);
document.write('<br/> Total Character :' + Fullname.length);
var Fullname=Fullname.slice(1, 2);
document.write('<br/> 2nd Position From Full Name: ' + Fullname);

intellectschool
Автор

আপনি অনেক সুন্দর করে উপস্তাপনা করেন
এই জন্য আপনাকে অসংখ্য ধন্যবাধ |

ismailhb
Автор

var firstName = prompt ("Enter your first name : ");

var lastName = prompt (" Enter your last name ");

var fulName = firstName + " " + lastName ;

var len = fulName.length;

var up = fulName.toUpperCase();

var all = fulName.slice(1, 2);

document.write( all);

sharifulhoquesozib
Автор

Sir,
Thanks For Guide Us. May All Blase Your.

frtechsoft
Автор

ভাইয়া আমাদের জন্য পিওর জাভাস্ক্রিপ্ট দিয়ে বড়ো একটা প্রজেক্ট করলে ভালো হতো.

mahbubulislamatik
Автор

<script>

var text1 =prompt("enter your first name")
var text2 =prompt("enter your last name <br>")
var text3 =text1 + text2;
document.write(text3 +"<br>");
document.write("total name character" + text3.length);
text3 =text3.toUpperCase();
document.write(text3);

</script>

solutiontrickbd
Автор

Thanks For Guide Us. May All Blase Your.Sir,

SoftScenery
Автор

sir
sir agulo to pythoner sathe purai mil
just akhane function gulo vinno but concept same.

mdmunirulsalehin
welcome to shbcf.ru