wweebbeer

74 posts

wweebbeer banner
wweebbeer

wweebbeer

@wweebbeer

Making my x account as my personal notebook😬

Katılım Ağustos 2025
38 Takip Edilen32 Takipçiler
wweebbeer retweetledi
Aryan
Aryan@justbyte_·
2 software developers working on the same branch
English
32
243
2.3K
271.1K
wweebbeer retweetledi
Sri
Sri@__karnati·
2 developers working on the same branch
English
16
146
1.7K
284.4K
Aditya
Aditya@theEquinoxDev·
Just came from practical... I thought the practical was of Compiler Design. Turns out, it was of ML 😭 cooked hard anyways 😋
English
6
0
25
338
Aditya
Aditya@theEquinoxDev·
As I said, we are finally here 😭. I'll probably be asleep when this goes out, so pls be kind :) Trying to let go of this fear somehow🫡 still lot to learn ik :)
English
19
0
69
1.5K
Manas Sharma
Manas Sharma@ManasCodeXart·
@wweebbeer But you got selected that's that's what matters congratulations XD 🎉
English
1
0
1
8
wweebbeer
wweebbeer@wweebbeer·
Today I had my first HR interview, and honestly, it didn’t go well 🥲. I feel really bad about how I presented myself. I actually knew the questions already, but I wasn’t prepared. My mind just went blank, and I couldn’t think properly in the moment.
English
2
0
6
51
wweebbeer retweetledi
le.hl
le.hl@0xleegenz·
When you realize how much disrespect you accepted just because you want to be a good person
English
73
7.3K
30.7K
439.2K
Aditya
Aditya@theEquinoxDev·
@wweebbeer Wow, that's greattt. Congratssss 🥳 so, was this the last round ?
English
1
0
1
23
wweebbeer
wweebbeer@wweebbeer·
@theEquinoxDev But still I got selected 🫠 just because they like my technical skills
English
1
0
1
17
Aditya
Aditya@theEquinoxDev·
@wweebbeer happened the same wid me in my first interview. just move forward with the learnings and you'll be good to go. lots of opportunities to come.
English
1
0
1
19
wweebbeer
wweebbeer@wweebbeer·
@theEquinoxDev Even my college received that message after that campus was evacuated but honestly, we were just happy the classes got cancelled. 😂
English
1
0
3
68
Aditya
Aditya@theEquinoxDev·
MY COLLEGE RECEIVED A BOMB THREAT JUST NOW 😭😭😭😭
English
43
0
67
4.1K
wweebbeer
wweebbeer@wweebbeer·
Underrated chatpata snacks 🫠😋
wweebbeer tweet media
English
0
0
6
165
wweebbeer
wweebbeer@wweebbeer·
Key differences: Map vs Object Key type : Any type String / Symbol Order : Preserved Not guaranteed Size: map.size Manual
English
0
0
4
156
wweebbeer
wweebbeer@wweebbeer·
Kahi bhul tho nahi gayeeeee Map is an object that holds key - value pair (unique) Const map = new Map( ) map.set ( 'name' , " weber ") map.set ( 'id' , " 1234") Console.log ( map ); // Map (2) { 'name' => ' weber ', 'id' => ' 1234 ' }
English
1
0
7
265
wweebbeer
wweebbeer@wweebbeer·
a ?? b --> if a is null or undefined, return b; otherwise return a. ?? handles null / undefined Does NOT treat 0, false, "" as empty Evaluates left to right Prevents logical OR bugs
English
0
0
4
47
wweebbeer
wweebbeer@wweebbeer·
Nullish coalescing operator Let Val1 , Val2 , Val3 , Val4; Val1 = 5 ?? 10 Val2 = null ?? 10 Val3 = undefined ?? 15 Val4 = null ?? 10 ?? 20 Console.log (Val1); // 5 Console.log (Val2); // 10 Console.log (Val3); // 15 Console.log (Val4); // 10
Română
1
0
6
178
wweebbeer
wweebbeer@wweebbeer·
this = current context function test() { console.log(this) } test() 1. Node output: global 2. Browser output: window Node me global object = global BUT top-level this = empty object {} console.log(this) 1. Node output: {}
English
0
0
4
47
wweebbeer
wweebbeer@wweebbeer·
function Cart ( . . .num1) { return num1 } Console.log ( Cart (20, 40, 50)) //[ 20, 40, 50 ] ... in parameters = rest operator Collects remaining arguments into an array function Cart ( val1 ,val2 , . . .num1) { return num1 } Console.log ( Cart (20, 40, 50, 60 ) ) //[ 50,60 ]
English
0
0
4
59
wweebbeer
wweebbeer@wweebbeer·
Returning a value does NOT automatically show it on the screen. You must: console.log() it OR store it in a variable undefined just logged in Bcz you didn’t pass any argument So: username === undefined And template literals do this: `${undefined}` --> "undefined"
English
0
0
4
51
wweebbeer
wweebbeer@wweebbeer·
function loginUser (username) { return ` ${ username } just logged in ` } (loginUser ( "weber" )) //Blank Reason❓ And if Console.log ( loginUser() ) // Undefined just logged in
English
1
0
6
177
wweebbeer
wweebbeer@wweebbeer·
If a function does not explicitly return anything, it returns undefined
English
0
0
4
33
wweebbeer
wweebbeer@wweebbeer·
function addTwoNumbers( no1, no2){ Console.log( no1 + no2 ) } Const result = addTwoNumbers( 2, 5) Console.log ("Result : " , result); // 7 // Result : undefined Reason❓
English
1
0
4
47
wweebbeer
wweebbeer@wweebbeer·
We can declare objects by 2 methods 1. literals Const jsUser = { Key : value } 2. Constructor Const jsUser = new Object () jsUser . Key = value Creating object ≠ singleton Sharing the same object = singleton const a = {name: "A"} const b = {name: "A"} a === b //false
English
0
0
5
47