for-coder
438 subscribers
99 photos
52 videos
23 files
136 links
@FORCODERR

@firaflash πŸ‘¨β€πŸ’»
Download Telegram
Please open Telegram to view this post
VIEW IN TELEGRAM
Good night I gotta use VPN ✈️ from now on
Good evening β˜•οΈβ˜•οΈ
Does anyone know a coffee shop or workspace with decent WiFi? I'm on an unlimited 5G plan, but the network's acting like it's powered by a potatoβ€”87kbps right now.
Please open Telegram to view this post
VIEW IN TELEGRAM
let x;  
console.log(x ?? "default");
What is the output of the above code?
Anonymous Quiz
15%
A) undefined
43%
B) β€œdefault”
32%
C) null
11%
D) ReferenceError
Please open Telegram to view this post
VIEW IN TELEGRAM
cool guy 😎 at a cool place πŸ“πŸ“Έ
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Kesgdet behuala πŸ§ŽπŸƒβ€β™‚οΈ
Back to coding πŸ‘¨β€πŸ’»
Good morning sewoch
function outer() {
let x = 10;
function inner() {
console.log(x);
}
x = 20;
return inner;
}

const fn = outer();
fn();