w3resource

JavaScript: Converts a specified number to an array of digits

JavaScript fundamental (ES6 Syntax): Exercise-7 with Solution

Write a JavaScript program to convert a specified number into an array of digits.

Note: Convert the number to a string, using the spread operator (...) to build an array.

  • Use Math.abs() to strip the number's sign.
  • Convert the number to a string, using the spread operator (...) to build an array.
  • Use Array.prototype.map() and parseInt() to transform each value to an integer.

Sample Solution:

JavaScript Code:

// Convert a number into an array of its digits.
// Define a function called `digitize` that takes a number `n`.
const digitize = n =>
  // Convert the number to a string, then split it into an array of characters.
  [...`${n}`]
    // Map each character to its corresponding integer value.
    .map(i => parseInt(i));

// Test cases
console.log(digitize(123)); // Output: [1, 2, 3]
console.log(digitize(1230)); // Output: [1, 2, 3, 0]

Output:

[1,2,3]
[1,2,3,0]

Visual Presentation:

JavaScript Fundamental: Converts a specified number to an array of digits

Flowchart:

flowchart: Converts a specified number to an array of digits

Live Demo:

See the Pen javascript-basic-exercise-1-7 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to target a given value in a nested JSON object, based on the given key.
Next: Write a JavaScript program to filter out the specified values from an specified array. Return the original array without the filtered values.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.