dev-serum
Search...
Ctrl
K
Data Structures & Algorithms
Coding Challenges
Codewars
8Kyu
Bin to Decimal
Previous
Surface Area and Volume of a Box
Next
Is it even?
Last updated
4 years ago
Was this helpful?
Solution
JavaScript
Copy
const binToDec = (n) => parseInt(n, 2);
Bin to Decimal
Codewars