Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="container">
    
  </div>
</body>
</html>
 
#container {
  text-align: center;
  font-size: 80px;
  color: red;
}
 
let one = parseFloat("10.77"),
    two = parseFloat("5.89"),
    three = parseFloat("20 023.04"),
    view = document.getElementById("container");
let sum = one + two + three;
console.log(sum)
view.innerHTML = sum.toFixed(2);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers