Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.min.js"></script>
  <script src="https://raw.github.com/moment/moment/develop/moment.js"></script>
  <script src="http://jsbin.com/owozer/1/js"></script>
  <meta charset=utf-8 />
  <title>JS Bin</title>
</head>
<body>
  
<div ng-app="miniapp">
    <div ng-controller="Ctrl">
        <div>
            <h2>ISO date</h2>
            <h4>Date formatted: {{dateISO | moment:'M/D/YYYY h:m A'}}</h4>
            <h4>Not formatted: {{dateISO}}</h4>
          <input type="text" ng-model="dateISO" name="isoInput" style="width: 400px;" />
        </div>
        <div>
            <h2>ASP.NET JSON date</h2>
            <h4>Date formatted: {{dateAspNet | moment:'M/D/YYYY h:m A'}}</h4>
            <h4>Not formatted: {{dateAspNet }}</h4>
            <input type="text" ng-model="dateAspNet " name="aspnetInput" />
        </div>
    </div>    
</div>
  
</body>
</html>
Output

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

Dismiss x
public
Bin info
willhpro
0viewers