Build Tip Calculator with Vanilla JavaScript for Beginners (HTML, CSS, JS)

preview_player
Показать описание

=======================================================

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

Hey this was my first js project while learning js ✌🏻

mdamaans
Автор

Sir plz kindly make the one video or playlist of REACT JS full knowledge based (Zero to Expert) in REACT JS but Sir in kindly record the video in URDU/HINDI language 🌹 ♥

muhammadsalmanalam
Автор

Thanks so much bro... Your video just helped me get my assignment done with ease. U got one subscriber 🫂

cletusikennachukwuemeka
Автор

How much html and css to learn?. Should i learn just css basics and jump to tailwind?

rayyanamir
Автор

what marker software you using for highlight ?

mandeepsng
Автор

Hi Qazi,
Please make projects in react.

hamzaawan.developer
Автор

Hi Qazi. When I fork the repl I do not see the exercise files only the solution, index.html, script.js, and style.css. in the Files column

paulpersad
Автор

Nice bro, when you will create hindi/urdu channel?

Akfxacademy
Автор

I go on your discord and there is no help

budfox
Автор

Make video on tensorflow.js, 3D.js etc

harshit_._pathak
Автор

Quazi! i want to teach on Fiverr, Ihave to because im not 18, how do I share my screen and audio, so people can see me code, that's how you do it right? 👍❤ liked btw!

t.rinity.
Автор

Please do react to-do-list Qazi
I love your videos
You’ve helped me a lot in my coding journey even though I’m broke
Thank you so much❤️

susboi
Автор

Sir pls Hindi channel start krdo sir pls as soon asw possible 🙏🙏

SpeedyPods
Автор

Please how do I join your online school? 🙏🏼🙏🏼🙏🏼🙏🏼

yusufmuhammed
Автор

Kindly make a video of this from scratch

abdullahaziz
Автор

The day you create Hindi, say Goodbye to clever programmer

Henry-mgro
Автор

Hey, please help!! like how you stopped numberOfPeople from going below 1, I tried doing something where we cant incerease numberOfpeople once the total person is $1, here is what I tried but had no luck

let perPersonTotal = " "; (declared this as global)

const calculateBill = () => {
const bill = Number(billInput.value);
const tipPercentage = Number(tipInput.value) / 100;

const tipAmount = bill * tipPercentage;

const total = tipAmount + bill;

perPersonTotal = total / numberOfPeople;

perPersonTotalDiv.innerText =
};

const increasePeople = () => {
if (perPersonTotal === 1) {
return;
}
numberOfPeople += 1;
numberOfPeopleDiv.innerText = numberOfPeople;
calculateBill();
};

aucklandpictures