Basic Data Structures Flashcards
Cards, resources and exercises of Data Structures in Javascript
What Are Basic data structures in Javascript ?
Variable, Arrays and Objects
How to add item at the beginning of an array ?
let arr = [1,2,3,4];
arr.unshift(0);
//result 0,1,2,3,4
Obs.: unshift method accepts one or more parameters
How to add item at the end of an array ?
let arr = [0 ,1,2,3,4];
arr.push(5);
//result 0,1,2,3,4,5
Obs.: push method accepts one or more parameters
How to remove item at the beginning of an array ?
let arr = [0,1,2,3,4,5];
arr.shift();
//result 1,2,3,4,5
Obs.: doens’t accepts parameters
Obs.: returns element removed
How to remove item at the end of an array ?
let arr = [0,1,2,3,4,5];
arr.pop();
//result 0,1,2,3,4
Obs.: doens’t accepts parameters
Obs.: returns element removed
How to remove itens at the middle of an array ?
let arr = [2, 5, 1, 5, 2, 1]; let removed = arr.splice(2, 2);
// sum elements arr.reduce((a, b) => a + b);
//result 10
Obs.: returns an array with elements removed
How to change values of an array using splice ?
let arr = [“eu”, “gosto”, “de”, “praia”];
arr.splice(3, 1, “parque”);
//results [“eu”, “gosto”, “de”, “parque”]
How to retrieve a slice of an array ?
let animals = [“dog”, “cat”, “giraffe”, “crocodile”, “elephant”];
let pets = animals .slice(0,2);
//results pets ==> ["dog","cat"] // results ==> animals ["dog", "cat", "giraffe", "crocodile", "elephant"]
Obs.: slice doesn’t change the source array.
How to copy an entire array without ref and without change it?
let jsDataTypes = [‘boolean’,’undefined’,’number’, ‘null’,’string’, ‘symbol’];
let data = […jsDataTypes];
//results data ==> [‘boolean’,’undefined’,’number’, ‘null’,’string’, ‘symbol’]
How to Combine Arrays with the Spread Operator ?
let japanCarBrand = [‘toyota’,’honda’,’nissan’];
let usaCarBrand = [‘ford’, ‘chevrolet’,’GMC’];
let franceCarBrand = [‘renault’, ‘citroen’,’pegeout’];
let carBrands = […japanCarBrand, …usaCarBrand, …franceCarBrand];
//results [‘toyota’,’honda’,’nissan’,’ford’, ‘chevrolet’,’GMC’,’renault’, ‘citroen’,’pegeout’]
How to check if an alement exists in the array ?
let names = [‘sandra’, ‘julia’, ‘meryl’, ‘angelina’,’scarlet’];
let index = names.indexOf(‘julia’);
//results 1
How to through all itens of an array with basic for loop ?
let decades = [1970,1980,1990,2000,2010];
for (let i = 0; i < decades.length; i++){ console.log(decades[i]); } //results 1970, 1980, 1990, 2000, 2010
How to create complex multi-dimensional arrays ?
let myNestedArray = [ // change code below this line [ [ 'terceiro nível', [ 'quarto nível', [ 'quinto nível', 'deepest' ], 'deeper' ], 'deep' ] ] ];
console.log(myNestedArray[0][0][1][1][1]); //results deepest
How to create an object in Javascript ?
let foods = { apples: 25, oranges: 32, plums: 28 };
How to add properties to an existing object ?
let foods = { apples: 25, oranges: 32, plums: 28 };
//add new properties
foods. bananas = 13;
foods. grapes = 35;
foods. strawberries = 27;
Obs.: If the property doesn’t exist yet, is created with the value passed;
How to Modify an Object Nested Within an Object ?
let userActivity = { id: 23894201352, date: 'January 1, 2017', data: { totalUsers: 51, online: 42 } }; userActivity.data.online = 45;
How to retrieve value from object property accessing by variable ?
let foods = { apples: 25, oranges: 32, plums: 28, bananas: 13, grapes: 35, strawberries: 27 };
function checkInventory(scannedItem) { // change code below this line return foods[scannedItem]; }
// returns 25
How to remove a property from object ?
let foods = { apples: 25, oranges: 32, plums: 28, bananas: 13, grapes: 35, strawberries: 27 };
delete foods.oranges;
delete foods.plums;
delete foods.strawberries;
How to check if an object has a property ?
let users = { Alan: { age: 27, online: true }, Jeff: { age: 32, online: true }, Sarah: { age: 48, online: true }, Ryan: { age: 19, online: true } };
//using 'in' function isEveryoneHere(obj) { return 'Alan', 'Jeff', 'Sarah', 'Ryan' in obj; } // results true
or alternatively
//using 'hasOwnProperty' function isEveryoneHere(obj) { return obj.hasOwnProperty('Alan'); }
//returns true
How to Iterate Through the Keys of an Object ?
Possible Solution
let users = { Alan: { age: 27, online: false }, Jeff: { age: 32, online: true }, Sarah: { age: 48, online: false }, Ryan: { age: 19, online: true } };
function countOnline(obj) { let total = 0; for(let user in obj){ if(obj[user].online){ total++; } } return total; }
console.log(countOnline(users));
// results 2
Note: for … in statement brings only the object key. To access the property value it is necessary to pass the object key to retrieve the value of the object.
How to all keys from a object ?
let users = { Alan: { age: 27, online: false }, Jeff: { age: 32, online: true }, Sarah: { age: 48, online: false }, Ryan: { age: 19, online: true } };
Object.keys(users);
//results Alan,Jeff,Sarah,Ryan
How to add item in the array wihthin object property ?
let user = { name: 'Kenneth', age: 28, data: { username: 'kennethCodesAllDay', joinDate: 'March 26, 2016', organization: 'freeCodeCamp', friends: [ 'Sam', 'Kira', 'Tomo' ], location: { city: 'San Francisco', state: 'CA', country: 'USA' } } };
function addFriend(userObj, friend) { userObj.data.friends.push(friend); return userObj.data.friends; }
console.log(addFriend(user, ‘Pete’));
//Results Sam,Kira,Tomo,Pete