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>
    <input id="input1" type="text" value="" />
    <input id="input2" type="text" value="" />
    <button onclick="additionne()">OK</button>
    <div id="result"></div>
    <script>
      function additionne() {
        var terme1 = +document.getElementById("input1").value;
        var terme2 = +document.getElementById("input2").value;
        document.getElementById("result").textContent = "La somme est : " + (terme1 + terme2);
      }
    </script>
    
  </body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers