Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 845 Bytes

digitize.md

File metadata and controls

25 lines (20 loc) · 845 Bytes
title tags author_title author_url author_image_url description image
digitize
math,array,beginner
Deepak Vishwakarma
Implementation of "digitize" in typescript, javascript and deno.

JS TODO

Converts a number to an array of digits.

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.

const digitize = (n) => [...`${n}`].map((i) => parseInt(i));
digitize(123); // [1, 2, 3]