Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
  <script src='http://www.polymer-project.org/components/platform/platform.js'></script>
  <link rel='import' href='http://www.polymer-project.org/components/polymer/polymer.html'>
</head>
<body>
<my-elem></my-elem>
  
<polymer-element name='my-elem'>
  <template>
    <style> td {padding: 10px; border: 1px solid black; width: 40px;}
    </style>
    <table>
      <tr>
        <td>{{player}}</td>
        <td>{{!player}}</td>
        <td>{{-player}}</td>
        <td>{{player + 1}}</td>
        <td>{{player?'a':'b'}}</td>
    </table>
  </template>
  <script>
    Polymer('my-elem', {
      player: true
    });
  </script>
</polymer-element>
</body>
</html>
Output 300px

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

Dismiss x
public
Bin info
ricticpro
0viewers