关于双引号和单引号的问题
请问一下什么时候该用双引号,什么时候该用单引号?
比如ng-app="MyCSSModule"
angular.module("MyCSSModule",[]);
controller('HeaderController',['$scope',.........................
$scope.messageText="This is an error!";
$scope.messageText='Just a warning.Please carry on';
这些地方好像无论是双引号还是单引号都不影响运行。是这样吗?