Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 1st, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. how to convert binary string to decimal?
  2. var binary = "1101000" // code for 104
  3. var digit = binary.toString(10); // Convert String or Digit (But it does not work !)
  4. console.log(digit);
  5.        
  6. var digit = parseInt(binary, 2);
  7.        
  8. var binary = "1101000";
  9. var digit = parseInt(binary, 2);
  10. console.log(digit);