これは私が今持っているものです:index.html
<div ng-app>
<h2>Todo</h2>
<div ng-controller="TodoCtrl">
<button class="btn btn-danger" ng-click="start()">Start</button>
</div>
</div>
function TodoCtrl($scope) {
$scope.start = function() {
};
}
$scope.start
ボタンをクリックするとボタンの色が黄色に変わるように、関数に何を入力できますか。