Posts by Rafael Soares • 21 points
3 posts
-
2
votes2
answers90
viewsA: Using . map() Create a variable that contains all user ages: [23, 15, 30]
You must return item.idade because item represents an object within the users list const usuarios = [{ nome: 'Diego', idade: 23, empresa: 'Rocketseat' }, { nome: 'Gabriel', idade: 15, empresa:…
-
0
votes1
answer97
viewsA: Delete records from selected checkboxes with angular
I’m not sure I fully understand your question, but if you’re just trying to clear the array Selected Then it’s up to you: Method : clearArray(){ this.selected.splice(0,myArray.lenght); } or you can…
-
0
votes1
answer1132
viewsA: Insert emoji into html input
Use <meta charset="UTF-8"> so that there is consistency in the appearance of emoji between platforms. HTML <input id='usrInput' value=''> Javascript…