← 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.

3

Merge two (or more) Arrays and remove duplicate items.

2021-01-27

1// JS Tip of the Day
2// Merge two (or more) Arrays and remove duplicate items.
3
4const firstArray = [2, 4, 6, 5], secondArray = [6,  11, 5, 3];
5const mergedArray = [...firstArray, ...secondArray];
6
7// Remove Duplicate Items with Filter method
8const uniqueItemsWithFilter = mergedArray.filter((val, pos) => {
9  return mergedArray.indexOf(val) === pos; // Remove return and brackets if you wish
10});
11
12// ...or remove Duplicate Items with Set and Destructuring
13const uniqueItemsWithSet = [...new Set(mergedArray)];
14
15console.log(uniqueItemsWithFilter); // [2, 4, 6, 5, 11, 3]
16console.log(uniqueItemsWithSet); // [2, 4, 6, 5, 11, 3]
2

Remove char from a string by position (using filter method)

2021-01-26

1// JS Tip of the Day
2// Remove char from a string by position (using filter method)
3
4const removeCharFromString = (str, position) => {
5  return str.split('').filter((_, index) => index != position).join('');
6}
7
8console.log(removeCharFromString("Lorem Ipsum", 3)); //Lorm Ipsum
1

How to swap to variables with or without destructuring

2021-01-25

1// JS Tip of the Day
2// Swap Variables with destructuring
3
4let a = "hello";
5let b =" world";
6
7//Old School without destructuring (< ES6)
8let tmp;
9tmp = a;
10a = b;
11b = tmp;
12// a: 'world'; b: 'hello'
13
14// ...or ES6 way with destructuring
15[a, b] = [b, a];
16// a: 'world'; b: 'hello'

Contattaci.

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.

Questo sito è protetto da reCAPTCHA e si applicano le Norme sulla privacy e i Termini di servizio di Google.