How to replace array element value with another
i have array like this, without using jquery
 this.products = [
      { 
        text: 'prod1', 
        value: 1 
      },
      { 
        text: 'prod2', 
        value: 2 
      },
      { 
        text: 'prod3', 
        value: 3 
      }
 ];
i want to replace 'text' to 'label'
 
     
     
     
     
    