PHP, JS, CSS, Python, and Machine Learning Technology
0
What is the difference between encryption and hashing
0

The TLDR answer is that encryption is two way and hashing is only one way. Both are methods to securely transfer data, but there is some difference. ...

0
What is the Event Propagation?
0

Event delegation makes use of two features of JavaScript events: event bubbling and the target element. When an event is triggered on an element, for example a ...

0
Const-var-let
0

var is function scoped and if you try to use a variable declared with var before the actual declaration, you’ll just get undefined. const and let are blocked ...

0
Coercion
0

We know becaue of js data-types rules, Strings act like strings and numbers like numbers. But what happens when you need two different data types to interact ...

0
Call stack is a collection of execution contexts.
0

When code is run in JavaScript, the environment in which it is executed is very important, and is evaluated as 1 of the following: Global code – The default ...

0
Mutability
0

One of the key differentiating attributes between primitive data types and compound data types is that the former are immutable. This means that you cannot ...

0
Closures
0

A closure is the combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment). In other words, a ...

0
What is typeof(NaN) ?
0

First, NaN is not a keyword (unlike true, false, null, etc..), it is a property of the global object. The value of NaN is the same as the value of Number.NaN: ...

0
Object.prototype
0

When you try to access a property on the new object, it checks the object’s own properties first. If it doesn’t find it there, it checks the ], and so on up ...

0
OOP-Encapsulation-Theory-GOOD-Explanations-Private-Methods
0

An object can store data in one of two ways: as a property or as a variable. The method that you choose will have substantial ramifications on data visibility. ...

0
The prototype of a subclass is the superclass
0

this refers to the object currently within the scope of the Person function. It sets it’s own property name as the value of the parameter passed into the ...

0
Class Inheritance
0

Instances inherit from classes (like a blueprint — a description of the class), and create sub-class relationships: hierarchical class taxonomies. Instances ...

0
Class Inheritance
0

Instances inherit from classes (like a blueprint — a description of the class), and create sub-class relationships: hierarchical class taxonomies. Instances ...

0
functional-programming-pure-function
0

As a side note - Redux need reducers to be “pure functions Basic example of mutations let state = { wardens: 900, animals: 800 }; This above ...

0
What, exactly, is the DOM?
0

The Document Object Model, or the “DOM”, is an interface to web pages. It is essentially an API to the page, allowing programs to read and manipulate the ...

0
What does a DOCTYPE do?
0

DOCTYPE is an abbreviation for DOCument TYPE. A DOCTYPE is always associated to a DTD - for Document Type Definition. A DTD defines how documents of a certain ...

0
What’s the difference between git fetch and git pull?
0

One of the feature git, has enabled us to record all changes by the commit. And saved it as our history. So when something unexpected happens, you can rollback ...

0
Code Executed by setTimeout()
0

Code executed by setTimeout() is called from an execution context separate from the function from which setTimeout was called. The usual rules for setting ...

0
Event Loop
0

JavaScript has a single call stack in which it keeps track of what function we’re currently executing and what function is to be executed after that. But ...

0
Asynchronicity-Event-Loop
0

The event loop's job is to look at the stack and look at the task queue. If the stack is empty it takes the first thing on the queue and pushes it on to the ...

RxHarun
Logo