How to use conditional statements on objects?

WBOY
Release: 2023-09-08 09:49:10
forward
1405 people have browsed it

How to use conditional statements on objects?

Conditional statements are used to control how execution proceeds in response to various situations. You can perform one action if the condition is true and another action if the condition is false. Conditional statements are an integral part of computer program logic, decision-making, or process control.

The task we will perform in this article is to use conditional statements on objects. Let’s read this article in depth to understand conditional statements better.

Use if statement

The if statement is the most basic type of conditional expression. If a statement is evaluated to see whether it is true or false, the if statement is only executed if the statement returns true. If the result is wrong, the code block will be ignored.

grammar

The following is the syntax of if statement -

if (condition) { // return out if condition is true }
Copy after login

Example

In the example below, we run the script using an if statement to check if the condition is true or false.

     
Copy after login

When the script executes, it generates an output containing the text obtained when the conditions used in the script pass, and that text is displayed on the web page.

Use switch statement

Use the switch statement to execute a piece of code according to various scenarios. A switch statement is part of a "conditional" statement in JavaScript and is used to perform various actions based on certain conditions. To select which of many blocks of code will be executed, use switches.

grammar

The following is the syntax of the switch statement -

switch(expression) { case a: break; case b: break; default: }
Copy after login

Example

Consider the following example, we are running a script to execute a block of code using a switch statement -

     
Copy after login

When the above script is run, an output window will appear, displaying the information obtained by the switch statement conditions displayed on the web page.

Use if else statement

The if statement causes a block to be executed if the condition is true. If the condition is false, nothing happens. However, you can use an if else statement to run the sentence when the condition is false.

grammar

The following is the syntax of if else statement -

if( condition ) { //statement } else { // statement }
Copy after login

Example

Execute the following code and observe how we execute the conditional "if else" statement in the script.

     
Copy after login

When the script executes, it will generate an output consisting of the text obtained from the conditions used in the script and display it on the web page.

The above is the detailed content of How to use conditional statements on objects?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!