test    
        
            name:
 
        
        
        `name`
        
 
            `sex`,`age`                
            `sex`,`age`        
        
          `person`.`name` ; { {number[0]}}+6={ {5+6}},{ {'对'+'的'+age}} 
        
        
            title:
            `title`                
            
                    
     
                        `n`                            
                
    
        var myApp = angular.module('myApp', []);        myApp.controller('firstCtl', function($scope) { //控制器的 $scope 是控制器所指向的应用程序 HTML 元素 angular 中$scope 是连接 controllers(控制器)和 templates(模板 view/视图)的主要胶合体。            $scope.title = 'Hello';        });        myApp.controller('secondCtl', function($scope) {            $scope.numbs  = [111,222,333,444];        });