Sunday, September 20, 2020

Lệnh điều kiện trong Javascript

Hôm nay chúng ta sẽ tiếp tục điều kiện trong Javascript, để nắm bắt được bài học này các bạn chỉ cần học những loại điều kiện và cú pháp xử lý như thế nào?

Các câu lệnh điều kiện được sử dụng để quyết định luồng thực thi dựa trên các điều kiện khác nhau. Nếu một điều kiện là đúng, bạn có thể thực hiện một hành động và nếu điều kiện sai, bạn có thể thực hiện một hành động khác.

Lệnh điều kiện trong Javascript

Chủ yếu có ba loại câu lệnh điều kiện trong JavaScript.

  • Câu lệnh if
  • Câu lệnh if...else
  • Câu lệnh if ... else if...else

Câu lệnh if trong javascript

Cú pháp:

if (condition)

{

Code ở đây

}

Ví dụ câu lệnh if

<html>

<head>

<title>IF Statments!!!</title>

<script type="text/javascript">

var age = prompt("Please enter your age");

if(age>=18)

document.write("You are an adult <br />");

if(age<18)

document.write("You are NOT an adult <br />");

</script>

</head>

<body>

</body>

</html>

Câu lệnh if else trong javascript

cú pháp:

if (condition)

{

code ở đây

}

Ví dụ:

<html>

<head>

<title>If...Else Statments!!!</title>

<script type="text/javascript">

// Get the current hours

var hours = new Date().getHours();

if(hours<12)

document.write("Good Morning!!!<br />");

else

document.write("Good Afternoon!!!<br />");

</script>

</head>

<body>

</body>

</html>

Câu lệnh if else if else

cú pháp:

if (condition1)

{

}

else if(condition2)

{

}

else

{

}

Ví dụ:

<html>

<head>

<script type="text/javascript">

var one = prompt("Enter the first number");

var two = prompt("Enter the second number");

one = parseInt(one);

two = parseInt(two);

if (one == two)

document.write(one + " is equal to " + two + ".");

else if (one<two)

document.write(one + " is less than " + two + ".");

else

document.write(one + " is greater than " + two + ".");

</script>

</head>

<body>

</body>

</html>

No comments:

Post a Comment