Skip to content

Latest commit

 

History

History
103 lines (78 loc) · 2.28 KB

File metadata and controls

103 lines (78 loc) · 2.28 KB

Tutorials

The Conditional (Ternary) Operator Explained

https://codeburst.io/javascript-the-conditional-ternary-operator-explained-cac7218beeff

// -- Example 1 --
// without ternary
if (person.age >= 16) {
  person.driver = 'Yes';
} else {
  person.driver = 'No';
}
// with ternary
person.driver = person.age >=16 ? 'Yes' : 'No';

// -- Example 2 --
let person = {
  name: 'tony',
  age: 20,
  driver: null
};
person.driver = person.age >=16 ? 'Yes' : 'No';



Object-oriented Programming (OOP)

Functional Programming



Clean Code



let el = document.querySelector('.zp_33Rq5.zp_49YQRaa')?.querySelectorAll('.mdi-linkedin')[0]?.parentNode?.getAttribute('href');



Scope and Closures



Difference between let, var & const



Microservices

Object-oriented



YAML

https://rollout.io/blog/yaml-tutorial-everything-you-need-get-started/

--- 
 doe: "a deer, a female deer"
 ray: "a drop of golden sun"
 pi: 3.14159
 xmas: true
 french-hens: 3
 calling-birds: 
   - huey
   - dewey
   - louie
   - fred
 xmas-fifth-day: 
   calling-birds: four
   french-hens: 3
   golden-rings: 5
   partridges: 
     count: 1
     location: "a pear tree"
   turtle-doves: two



You do not need lodash



Aspect-Oriented Programming (AOP)