← Torna al blog
Dev Tips
Un trucchetto al giorno leva le complicazioni di torno! Piccole "scorciatoie" che possono facilitare la vita degli sviluppatori e far risparmiare tempo...e righe di codice.
Un trucchetto al giorno leva le complicazioni di torno! Piccole "scorciatoie" che possono facilitare la vita degli sviluppatori e far risparmiare tempo...e righe di codice.
2021-03-10
1// JS Tip of the Day
2// Check if at least one Array item passes a condition
3
4const heroes = [
5 { name: "Batman", superPower: "money" },
6 { name: "Superman", superPower: "flight" },
7 { name: "Wonder Woman", superPower: "superior strength" }
8];
9
10const haveMoney = heroes.some(hero => hero.superPower === 'money');
11console.log(haveMoney); // true
2021-03-09
1// JS Tip of the Day
2// Remove properties from an Object
3
4const hero = { name: 'Batman', weapon: 'Batarang', vehicle: 'Batmobile', partner: 'Robin' };
5
6// Dot or Array notation way
7delete hero.vehicle;
8delete hero['partner'];
9console.log(hero);
10// { name: "Batman", weapon: "Batarang" }
11
12// Immutable way with rest operator
13const anotherHero = { name: 'Batman', weapon: 'Batarang', vehicle: 'Batmobile', partner: 'Robin' };
14const { partner, ...restHero } = anotherHero;
15console.log(restHero);
16// {name: "Batman", weapon: "Batarang", vehicle: "Batmobile" }
17
18// Immutable way with rest operator and dynamic property
19const prop = 'vehicle';
20const { [prop]: exclProp, ...anotherRestHero } = restHero;
21console.log(anotherRestHero)
22// {name: "Batman", weapon: "Batarang" }
2021-03-08
1// JS Tip of the Day
2// Add properties to an Object
3
4const hero = { name: 'Batman', weapon: 'Batarang' };
5hero.vehicle = 'Batmobile'; // Dot notation way
6hero['partner'] = 'Robin'; // Array notation way
7
8Object.assign(hero, { friend: 'Superman' }); // Object Assign
9console.log(hero);
10// { name: "Batman", weapon: "Batarang", vehicle: "Batmobile", partner: "Robin", friend: "Superman" }
11
12const anotherHero = { ...hero, pet: 'Ace' }; // Immutable way with destructuring
13console.log(anotherHero);
14// {name: "Batman", weapon: "Batarang", vehicle: "Batmobile", partner: "Robin", friend: "Superman", pet: "Ace" }
2021-03-05
1// JS Tip of the Day
2// Array truncation
3
4const heroes = ['Batman', 'Superman', 'Green Arrow', 'Wonder Woman'];
5console.log(heroes.length); // 4
6
7heroes.length = 2; // Quick truncation!
8console.log(heroes.length); // 2
9console.log(heroes); // ['Batman', 'Superman']
2021-03-04
1// JS Tip of the Day
2// Insert Elements into a Specific Index of an Array
3
4const heroes = ['Batman', 'Wonder Woman'];
5
6const insertAt = (array, index, ...items) => {
7 array.splice(index, 0, ...items);
8 return array; // return the array if you want
9}
10
11console.log(insertAt(heroes, 1, 'Green Arrow', 'Superman'));
12// ['Batman', 'Green Arrow', 'Superman', 'Wonder Woman']
Hai in mente un progetto e vorresti realizzarlo?
Sei interessato a migliorare le competenze del tuo team in ambito di programmazione e sviluppo?
Oppure vuoi semplicemente prendere prendere un caffè con noi e vedere la nostra collezione di Action Figure, allora scrivici tramite questo form.
Se, invece, vuoi far parte del team, guarda le nostre offerte di lavoro.