1- JavaScript operators can be used to perform which of the
following computing operations?
A Implement conditional logic
B Store data in a database
c Port data types from various other object-orientated
languages
Create new data types
OK
Answers
Answered by
0
Answer:
i really dont know the answer
Answered by
0
Answer:
A) Implement conditional logic.
Explanation:
JavaScript operators such as ( equal to ), (not equal to), (smaller than) , (greater than), etc can be used to implement conditional statements into your program.
Example:
if( num < 1 ){
console.log("Provided number is not a valid natural number.");
}
Hope this helps you!
Similar questions