Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Converting decimal to binary or hex based on a condition in JavaScript
Problem
We are required to write a JavaScript function that takes in a number n. Our function should convert the number to binary or hex based on −
- If a number is even, convert it to binary.
- If a number is odd, convert it to hex.
Example
Following is the code −
const num = 1457;
const conditionalConvert = (num = 1) => {
const isEven = num % 2 === 0;
const toBinary = () => num.toString(2);
const toHexadecimal = () => num.toString(16);
return isEven
? toBinary()
: toHexadecimal();
};
console.log(conditionalConvert(num));
Output
Following is the console output −
5b1
Advertisements
