Computer Science, asked by turbo10, 6 months ago

write the following statements by using conditional operator in a correct manner .
x? x<=y && x>0 :y​

Answers

Answered by shambhavi1634
0

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');if (year == 2015) alert( 'You are right!' );

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');if (year == 2015) alert( 'You are right!' );In the example above, the condition is a simple equality check (year == 2015), but it can be much more complex.

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');if (year == 2015) alert( 'You are right!' );In the example above, the condition is a simple equality check (year == 2015), but it can be much more complex.If we want to execute more than one statement, we have to wrap our code block inside curly braces:

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');if (year == 2015) alert( 'You are right!' );In the example above, the condition is a simple equality check (year == 2015), but it can be much more complex.If we want to execute more than one statement, we have to wrap our code block inside curly braces:if (year == 2015) {

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');if (year == 2015) alert( 'You are right!' );In the example above, the condition is a simple equality check (year == 2015), but it can be much more complex.If we want to execute more than one statement, we have to wrap our code block inside curly braces:if (year == 2015) { alert( "That's correct!" );

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');if (year == 2015) alert( 'You are right!' );In the example above, the condition is a simple equality check (year == 2015), but it can be much more complex.If we want to execute more than one statement, we have to wrap our code block inside curly braces:if (year == 2015) { alert( "That's correct!" ); alert( "You're so smart!" );

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');if (year == 2015) alert( 'You are right!' );In the example above, the condition is a simple equality check (year == 2015), but it can be much more complex.If we want to execute more than one statement, we have to wrap our code block inside curly braces:if (year == 2015) { alert( "That's correct!" ); alert( "You're so smart!" );}

The if(...) statement evaluates a condition in parentheses and, if the result is true, executes a block of code.For example:let year = prompt('In which year was ECMAScript-2015 specification published?', '');if (year == 2015) alert( 'You are right!' );In the example above, the condition is a simple equality check (year == 2015), but it can be much more complex.If we want to execute more than one statement, we have to wrap our code block inside curly braces:if (year == 2015) { alert( "That's correct!" ); alert( "You're so smart!" );}We recommend wrapping your code block with curly braces {} every time you use an if statement, even if there is only one statement to execute. Doing so improves readability.

follow me!!!

Similar questions