How To Use If In Javascript

Tanggal : 14 Feb 2023, Category : JavaScript, Create By : admin

In JavaScript, you can use the "if" statement to execute code based on a condition. The basic syntax is:

if (condition) {
// code to execute if the condition is true
}
 

Here's an example:

let age = 25;

if (age >= 18) {
console.log("You are an adult.");
}
 

In this example, the code inside the curly braces will only be executed if the condition inside the parentheses (age is greater than or equal to 18) is true. If the condition is false, the code inside the curly braces will be skipped.

You can also use "else" to specify code to execute if the condition is false, like this:

let age = 15;

if (age >= 18) {
console.log("You are an adult.");
} else {
console.log("You are not an adult.");
}
 

In this example, since age is less than 18, the code inside the "else" block will be executed, and "You are not an adult." will be logged to the console.

 


Keyword:
  • How To Use If In Javascript

Artikel Lain

Beberapa Hal Yang Harus Anda Siapkan Jika Ingin Menjadi Programmer

Date : 03 Sep 2018, Category : Pemprograman Website, Create By : admin

Pada zaman sekarang banyak sekali perguruan tinggi yang sudah membuka jurusan atau ilmu mengenai komputer dari mulai pengembangan hardware dan software, Tak heran jika kalian kuliah di jurusan berkaitan dengan .....

Membuat Database Mysql

Date : 15 Aug 2018, Category : Database, Create By : admin

Tentunya setiap aplikasi yang bersifat dinamis memerlukan adanya database sebagai penyimpan data - data website yang nantinya akan di tampilkan di dalam halaman situs website. Di dalam sebuah database memliki Tabel, .....

7 Foods That Help With Weight Loss.

Date : 13 Feb 2023, Category : Health, Create By : admin

The basic concept of weight loss is to keep the calorie intake into our body lower than the amount of calories we burn. Food factor is certainly very important in .....