Arif's personal blog

Javascript Part 1

Variable declaration


Data types

  1. Primitive data types
    • Number
    • String
    • Boolean
    • Undefined -> let lastname (has one and only one value in it: undefined)
    • Null -> const obj = null (tpyeof return ‘object’ )
    • Symbol -> const country = Symbol(‘China’)
    • BigInt -> const bigNum = BigInt(‘123456789123456789123456789’)
  2. Object data types
    • Objects
    • Arrays
    • Functions

There is no function data type in JS. However, if you use the typeof operator to find the data type of a function, you will see that it returns function.


Typeof operator

Typeof operator always returns string.

if ( typeof x === undefined ) - WRONG
if ( typeof x === ‘undefined’ ) - CORRECT


Type conversion & type coersion

  1. Type conversion is when you manually convert a value from one type to another using some methods (it is known as Explicit Conversion)
  2. Type coercion is when JS converts a value from one type to another automatically (it is known as Implicit Conversion)

Type Conversion

  1. String()
    String(676)
  2. toString()
    num.toString()
  3. toFixed()
    const num = 601.488
    num.toFixed(2) => 601.49
  4. Number()
    Number(‘123’)
  5. parseInt()
    parseInt(‘123SomeText’)
  6. parseFloat()
    parseFloat(‘3.14Pi’)

Basic array methods


Slice


Splice


Reverse & Concat methods

If you want to reverse an array without mutating original array, you can use slice and reverse methods together. const newLetters = letters.slice().reverse();


Join & at methods

  1. students.forEach(myFunction);
     function myFunction(student) {  
       console.log(`${student} is a great student`)
     }  
  2. students.forEach(function (student) {  
       console.log(`${student} is a great student`)  
     });   
  3. students.forEach((student) => console.log(`${student} is a great student`));  
  

You can’t use continue and break statements with forEach loop, because forEach loop always loop whole array


Using for loop with arrays

for (const student of students) {  
  console.log(`${student} is a great student`)  
}

map

  const numbers = [ 1, 11, 32, 5 ];  
  const tripleNumbers = numbers.map( (item) => item * 3 )
  // Output: [ 3, 33, 96, 15 ]

filter

  const ages = [ 32, 33, 12, 40 ];  
  const adult = ages.filter(item => item >= 18)
  // Output: [ 32, 33, 40 ]

Reduce

reduce()

 const numbers = [1,7, 28, 30, 4, 40, 3, 6];  
 numbers.reduce ( (total, cur, i, arr) => {
  console.log(`Iteration: ${i} : ${total}`)  
  return total + cur;  
}, 0)  
 [1, 2, 3, 4].reduce((a, b) => a + b, 0)  
  // Output: 10  

Find & findIndex methods

  const numbers = [21, 11, 32, 5];
  numbers.find(number => number <= 18)
  // Output: 11    
  const numbers = [21, 11, 32, 5];
  numbers.findIndex(number => number <= 18)
  // Output: 1    

Some & every

  const numbers = [1, 2, 3, 4, 5];
  numbers.some((element) => element % 2 === 0);
  // Output: true      
  const numbers = [1, 2, 3, 4, 5];
  numbers.every((element) => element > 40 );
  // Output: true      

Flat method

  const arr1 = [0, [1, 2], [3, 4]];
  arr1.flat(); // [0, 1, 2, 3, 4]
  const arr2 = [0, 1, 2, [8, [5, [3, 4]]]];
  arr2.flat(2); // [0, 1, 2, 8, 5, [3, 4]] 

The depth level specifying how deep a nested array structure should be flattened. Defaults to 1. ([ ] – depth is 1, [[ ]] –depth is 2 and etc.)

  const veryDeep = [1, [2, 2, [3, [4, [5, [6]]]], 1]];
  veryDeep.flat (Infinity); // [1, 2, 2, 3, 4, 5, 6, 1]

Sort method

  letters.sort()

For sorting numbers, you can use below syntax:

  numbers.sort(function(a, b){return a-b}); (ascending order)
  numbers.sort(function(a, b){return b-a}); (descending order)

Data Structure

Array destructuring

The destructuring assignment syntax is a JavaScript expression that makes it possible to unpack values from arrays, or properties from objects, into distinct variables.

  a) const arr = ['James', 'Bond', 7];
     const [name, surname, code ] = arr;
  b) obj = {
      name : 'Mike',
      favoriteNumbers : [4, 6, 10]
     }
const [firstNumber, , secondNumber] = obj.favoriteNumbers // 4,10

Object destructring

  obj = {
   name : 'Mike',
   surname: 'Doe',
   favoriteNumbers : [4, 6, 10]
}
const {name, surname, favoriteNumbers } = obj;
const {name: ad, favoriteNumbers: number } = obj

Spread or Rest operator (…)

  const numbers = [1, 2, 3, 4, 5, 6]
  const numbers2 = [7, 8, 9, 0]
  const library = 'react'
  const digits = […numbers, …numbers2] //merge arrays
  const letters = […library]
  const copyNumbers = […numbers] // creates a copy of the aray
  const [a, b, …others] = numbers (rest operator)

Rest parameters

  function sum(...theArgs) {
    return theArgs.reduce((previous, current) => { return previous + current; });
}
console.log(sum(1, 2, 3));// expected output: 6
console.log(sum(1, 2, 3, 4));// expected output: 10