
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert Decimal to Binary or Hex in JavaScript Based on Condition
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