对于 JavaScript,最好在函数表达式块之后使用分号:
var myfunction = function() {
alert('hello world');
};
在 AngularJS 中,比如在控制器中,使用 dreaded$scope
怎么样?我经常看到这些在结束块之后没有分号:
$scope.myFunction = function() {
alert('hello world');
}
但是有谁知道这方面的最佳做法?在这些 $scope '表达式' 的末尾添加分号会破坏我的 AngularJS 应用程序吗?像这样:
$scope.myFunction = function() {
alert('hello world');
};