Skip to content

Instantly share code, notes, and snippets.

@Goloburda
Goloburda / keywordthis.js
Created November 26, 2019 08:35
Keyword "this". JavaScript.
"use strict";
console.log(this); //undefined
function Person(name, age) {
this.name = name;
this.age = age;
this.sayName = () => {
console.log(this.name);
};
@Goloburda
Goloburda / javascriptClosure.js
Created November 26, 2019 08:07
JavaScript call function n-times.
// Function calls n-times before get '()';
const closureFn = firstArgument => {
let sum = firstArgument;
return function callMe(nextArgument) {
if (nextArgument) {
sum += nextArgument;
return callMe;
}
return sum;