CHALLENGE
function mystery(x) {
return (function(y) {
return x + y;
})(x * 2);
}
const result1 = mystery(2);
const result2 = mystery(5);
const result3 = mystery(-1);
console.log(result1, result2, result3);
π9
π€24π€£7π6π₯3
A long-time maintainer of the wildly successful Electron cross-platform app framework stands by the technical choices Electron has made over the years and defends it against some of the more common criticisms here.
Felix Rieseberg
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯4π3β€1
CHALLENGE
function mysteriousFunction(a) {
let result = 0;
for (let i = 1; i <= a; i++) {
if (i % 3 === 0 && i % 5 === 0) {
result += i * 2;
} else if (i % 3 === 0) {
result += i;
} else if (i % 5 === 0) {
result -= i;
}
}
return result;
}
console.log(mysteriousFunction(15));
π€£19π13
π€25π8π₯7β€4
CHALLENGE
function tricky() {
let a = 1;
let b = 2;
const result = (function(a) {
a = 3;
return a + b;
})(a);
return result;
}
console.log(tricky());
π3β€1
π15π€7π€£6π₯3
The irony is that while Node popularized JavaScript on the server (though Netscape was doing it in the 90s) this modern, standardized cross-runtime approach doesnβt work on Node ...yet ;-)
Marvin Hagemeister
Please open Telegram to view this post
VIEW IN TELEGRAM
β€7π4π₯4
CHALLENGE
let symbol1 = Symbol('description');
let symbol2 = Symbol('description');
const obj = {
[symbol1]: 'value1',
[symbol2]: 'value2'
};
console.log(obj[symbol1]);
console.log(symbol1 === symbol2);
π₯4π2
What is the output?
Anonymous Quiz
57%
'value1' false
14%
'value2' true
24%
'value1' true
5%
'value2' false
π€£18π€10π7β€3π€©1
Generate Word and PowerPoint files dynamically by merging against templates (ideal for invoices, contracts, certificates, etc.) Itβs open source (MIT or GPLv3), but the creator has a commercial version with more extensions (e.g. to work with Excel). GitHub repo and feature demos.
Edgar Hipp
Please open Telegram to view this post
VIEW IN TELEGRAM
π6β€3π₯1
CHALLENGE
const wm = new WeakMap();
const obj1 = {};
const obj2 = {};
wm.set(obj1, 'object 1');
wm.set(obj2, 'object 2');
wm.delete(obj1);
console.log(wm.has(obj1));
π9
π€£15π9β€5π€4
Given raw photos of documents, this can do paper detection (along with glare suppression), distortion correction, highlighting and extracting. See some visual examples or try it out here.
ColonelParrot
Please open Telegram to view this post
VIEW IN TELEGRAM
π₯8β€3π3π€1
CHALLENGE
const numbers = [1, 2, 3, 4, 5];
const result = numbers
.filter(n => n % 2 === 0)
.map(n => n * 2)
.reduce((acc, n) => acc + n, 0);
console.log(result);
β€5π1
π21π€6π₯5β€3
CHALLENGE
const person = {
name: 'Alice',
age: 25,
city: 'Wonderland'
};
const additionalInfo = {
age: 30,
occupation: 'Explorer'
};
const combined = {
...person,
...additionalInfo
};
console.log(combined.age);
π12π₯3
π22π₯4β€2
CHALLENGE
function example() {
console.log(a);
var a = 10;
console.log(a);
}
example();
π2π€2
What is the output?
Anonymous Quiz
10%
10, undefined
10%
0, 10
71%
undefined, 10
9%
ReferenceError, 10
β€22π18π€£6π₯3