TZinovieva

Binary To Decimal

Jan 21st, 2023
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function binaryToDecimal(input) {
  2.     let output = parseInt(input, 2);
  3.     console.log(output);
  4. }
Advertisement
Add Comment
Please, Sign In to add comment