Channel Avatar

DEV19 @UCQNqdaEMfiiNxTiqoyk1dtA@youtube.com

34K subscribers - no pronouns :c

❤️❤️#Enjoying Life..❤️❤️


Welcoem to posts!!

in the future - u will be able to do some more stuff here,,,!! like pat catgirl- i mean um yeah... for now u can only see others's posts :c

DEV19
Posted 3 months ago

🚀 New Series Alert! 🐧
Check out Linux Commands series to master essential commands easily!
🎥 Watch the first video here: youtube.com/shorts/Hfe8au5i8m...

Don't forget to like, share, and subscribe for more! 🔔
#LinuxCommands #TechTips #LearnLinux

8 - 1

DEV19
Posted 5 months ago

JavaScript Snippet 18:

const num = 0 && -1 || 18
console.log(num)

38 - 1

DEV19
Posted 5 months ago

Python Snippet :

def fun(x, y=None):
if y:
return x + y
return x * x

print(fun(5))
print(fun(2, 3))
print(fun(4, 0))

27 - 3

DEV19
Posted 6 months ago

JavaScript Snippet 17:

function foo() {
return {
bar: "hello"
};
}

function baz() {
return
{ bar: "hello" };
}

console.log(foo());
console.log(baz());

94 - 9

DEV19
Posted 6 months ago

Python Snippet :

print("abc", end="")
print("def")

76 - 8

DEV19
Posted 10 months ago

JavaScript Snippet 16:

const add = (a, b) => a + b
console.log(add.length)

80 - 4

DEV19
Posted 11 months ago

Python Snippet :

if(1!=1):
printing("Dev19")
else:
print("Dev19community")

112 - 21

DEV19
Posted 11 months ago

JavaScript Snippet 15:

console.log('6' - '2' + '1')

53 - 6

DEV19
Posted 11 months ago

Python Snippet :

c = True + True + 2 - False
print(c)

143 - 8

DEV19
Posted 11 months ago

JavaScript Snippet 14:

let res = true + false - (-3)
console.log(res)

133 - 4