1.6 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.6 KiB
		
	
	
	
	
	
	
	
title
| title | 
|---|
| Use the Conditional (Ternary) Operator | 
 Remember to use
 Remember to use Read-Search-Ask if you get stuck. Try to pair program  and write your own code
 and write your own code 
Use the Conditional (Ternary) Operator
 Problem Explanation:
 Problem Explanation:
- You need to write a function named checkEqual, which checks if the two parameters are equal.
- If the parameters are equal, Equalis to be returned elseNot Equalshould be returned.
 Hint
 Hint
Use ternary operator to check for equality.
try to solve the problem now
Spoiler Alert!
Solution ahead!
function checkEqual(a, b) {
  return a === b ? "Equal" : "Not Equal";
}
Code Explanation:
- A function checkEqualis declared, it accepts two parameters in variablesaandb.
- The returnstatement would return the value of the evaluated ternary expression.
- The ternary expression checks if aandbare equal or not and returnsEqualorNot Equalrespectively.
