@Razia86 This is because the user input for num1 and num2 is being saved as a string no matter what you type. There are two types of ways to ask for input through prompt that i know of.
1st way ↓ prompt("") // gets saved as a string
2nd way ↓ promptNum("") // gets saved as an integer.
!Solution! - Just put "Num" in front of the "prompt" word.
Hello and welcome to another tutorial!
JavaScript tutorial!
I know all you guys need to make games, amazing websites... and more.
recommended for @Bookie0
So let's start!
1. Hello World!
A hello world example can be writed with 3 examples:
It is very simple... you only should write:
And then you just click inspect in the document and hit console and you should see:
In the first one, we printed hello world in the console...
Now, we will print it in the document!
Like this:
And then you should see in your document "Hello World!" in the left top of your document.
VERY VERY VERY VERY Simple alert in javascript for hello world!
And then you should see an alert comes says "Hello World!"
2. Variables
Variables are so simple in javascript(let's call it js)...
you must write:
and then you can write:
Very simple!
3. If statements
If statements in js are so helpful!
you can write:
and then it will come an alert says "Hello Zuhdi" because
name
is equal toZuhdi
!4. Comments
I don't need to late on comments...
you only should write:
5. Functions
Functions are soooooo cooool in js!
you can write:
then you shoudl CALL the function:
and the output will be
22
Why?
because in the add function we put in these
()
a num1 and num2... and when we call it, we wrote in the()
our numbersSo...
THAT'S IT!
6. Simple Calculator with prompts and alerts.
From what we learned today: we need to make a simple calc!
let's start:
try this code and see the output!
ENJOY!
@Razia86 This is because the user input for num1 and num2 is being saved as a string no matter what you type. There are two types of ways to ask for input through prompt that i know of.
1st way ↓
prompt("") // gets saved as a string
2nd way ↓
promptNum("") // gets saved as an integer.
!Solution! - Just put "Num" in front of the "prompt" word.