logo CodeStepByStep logo

decimalToBinary

Language/Type: JavaScript parameters return while binary
Related Links:

Write a function named decimalToBinary that accepts an integer as a parameter and returns an integer whose digits look like that number's representation in binary (base-2). For example, the call of decimalToBinary(43) should return 101011.

If you find your solution returning unexpected double values, remember that JavaScript will convert integer (whole number) values to double values when divided by a number that is not a factor. You can avoid this conversion by using JavaScript's parseInt function which converts any number to an integer value. For example, the call of parseInt(2.13333) would return 2.

Constraints:

  • Do not use a string in your solution.

Function: Write a JavaScript function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.