This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// we have an array of objects, we want to remove one object using only the id property | |
const apps = [{id:34,name:'My App',another:'thing'},{id:37,name:'My New App',another:'things'}]; | |
// get index of object with id of 37 | |
const removeIndex = apps.findIndex( item => item.id === 37 ); | |
// remove object | |
apps.splice( removeIndex, 1 ); | |
// get index of object with id:37 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I started programming in the last two years. I'm not hiding many personal | |
problems that prevented me from advancing, but in addition, I've tried so far and now, | |
I remember first starting the program, watching dozens of videos, most of them had opinions | |
about the program, but what i had in general was able to show me that the program has three levels. | |
1-Starting level | |
which is the time to start a single and two years in the program I can say it's the hardest | |
level because in this case you're not a developer and you can't spend your time and money to develop yourself | |
but you can determine your different and favorite languages |