Skip to content

Instantly share code, notes, and snippets.

@scabbiaza
Last active February 8, 2018 09:40
Show Gist options
  • Save scabbiaza/275e052328cdce37919b to your computer and use it in GitHub Desktop.
Save scabbiaza/275e052328cdce37919b to your computer and use it in GitHub Desktop.
js: concepts

Data Types, mutable, immutable

What data types in JS do you know? What data types are mutable? How to solve mutability problem in the code?

var person1 = {name: 'Ana'};
var person2 = person1;
person1.name = 'Julia';
console.log(person1.name);
console.log(person2.name);

Properties

What is the Prototype? What is the own object properties?

var Person = function(firstname, lastname) {
  this.firstname = firstname;
  this.lastname = lastname;
  var age = "20";
};
var john = new Person("John", "Doe", 35);
for (var prop in john) {
  console.log(prop);
}

Blocking and non-blocking

JS is the single threaded language. What is means? How do you understand call stack? What is the event loop?

console.log('1');
setTimeout(function() {console.log(2)}, 2000);
console.log('3');
$.ajax({
    url: '/echo/json/',              
    dataType: 'json',       
}).done(function(){
    console.log(4);
}); 
console.log('5');
for (i=0; i<999999999; i++) {
}
console.log('6');

Async

function ajax1() {
  return $.ajax({
        url: '/url1',              
        dataType: 'json', 
    })
  .done(function(){
        console.log(1);
    }); 
} 

function ajax2() {
   return $.ajax({
        url: '/url2',              
        dataType: 'json',       
    })
   .done(function(){
        console.log(2);
    }); 
}    

ajax1();
ajax2();

Loading and Execution

Create the time diagram

<html> 
  <head>
    <title>Script Example</title>
    <script type="text/javascript" src="file1.js"></script> <!-- loading time 3s-->
    <script type="text/javascript" src="file2.js"></script> <!-- loading time 2s-->
    <script type="text/javascript" src="file3.js"></script> <!-- loading time 1s-->
    <link rel="stylesheet" type="text/css" href="styles.css"> <!-- loading time 5s-->
</head> 
<body>
  <p>Hello world!</p> 
</body>
</html>

When we will see "Hello world!" on the page, if file1.js content will be

alert('How are you?')

DOM Access

What is the problem with this peace of code? How to optimize it? What is the Virtual DOM?

function innerHTMLLoop() {
  for (var count = 0; count < 15000; count++) {
  document.getElementById('here').innerHTML += 'a'; }
}
let channels = [
{
id: 1,
members: [{name: "Iva", role: "Backend Developer"}, {name: "Devi", role: "Backend Developer"}]
},
{
id: 2,
members: [{name: "Pooja", role: "Backend Developer"}, {name: "Devi", role: "Backend Developer"}]
},
{
id: 3,
members: [{name: "Pooja", role: "Backend Developer"}, {name: "Tanja", role: "Frontend Developer"}]
},
{
id: 4,
members: [{name: "Yura", role: "Backend Developer"}, {name: "Tanja", role: "Frontend Developer"}]
}
]
// create two lists of developers by categories
let frontendDevelopers
let backendDevelopers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment