
Tejas Magade π΅
@thetejasmagade
Followers
9
Following
1K
Media
21
Statuses
171
In love with Java and JavaScript π Programmer / Developer, Tweets about Programming and Web Development, Learning new Things ππ
Mumbai, IN
Joined August 2022
Hello π, @MichaelThiessen .Suppose, I'm having an 12 components and I want to show them conditionally. Then How should I optimize it and reduce the lines of code in vue 3?. #vuejs.
1
0
0
Do you know?.If you are having lot of props or events passing to the component and because, of that your code is getting unwieldy and difficult to manage then you can do this β
β
. #vue3 #vuejs #javascript #typescript
0
0
0
I'm finally starting to work on my first SaaS project! β€οΈ Guys, please suggest which framework or language I should use for the backend. I'm considering Go with Gin. What do you suggest?. #buildinpublic #buildinginpublic #SaaS.
1
0
2
Learn how you can generate Typescript interfaces from JSON on VS Code #typescript #javascript.
dev.to
Learn how you can generate Typescript interfaces from JSON on VS Code
1
0
0
Why java packages are used?. 1. To separate the classes. Like authentication related classes stored in authentication package. 2. Helps to improve the security by access modifiers. 3. To remove naming conflicts. There are lot of things but these are common. #java #LearnToCode.
0
0
0
Here are the linksππ·. joshwcomeau Blog: Dmitri Pavlutin Blog: . Thanxxxxx me later. .
dmitripavlutin.com
Dmitri Pavlutin Blog is a place to learn about JavaScript, CSS, React, Vue and more on Frontend development
0
0
0
π Elevate your coding skills! . π Explore insightful blogs by @DmitriPavlutin and @JoshWComeau for expert guidance on React, TypeScript, Vue, and JavaScript. ππ‘ Dive into the world of clean code and best practices! π©βπ»π¨βπ». #React #TypeScript #VueJS #JavaScript #CodingWisdom.
1
0
0
Use the `unknown` Type Before Defaulting to `any` π€. Use `unknown` type when a variable can have various types, and you need to perform type-checks before using it to ensure safety:.It can be used when you don't know what response is receiving from API. #typescript #javascript
0
0
0
Ever wonder how to handle different data types in #TypeScript? Like, what if declared variable can be string or number then solution isπ€Union Types! π€― Combine multiple types with the '|' operator. π
0
0
0
Want more control over your component's lifecycle? Custom hooks let you define custom lifecycle methods to execute logic at specific stages. #React #javascript #ReactHooks #Lifecycle. In simple words π.
1
0
0
Why there is useMemo() hook in React and computed() composable in Vue usedβ. The simple answer is to achieve "memoization" or "memoisation". #reactjs #vuejs #javascript #typescript #webdeveloper.
1
0
0
Memory leaks giving you headaches π€―? Fear not, Vue devs! Here's a pro tip to keep your apps leak-free and lightning fast β‘:. #vuejs #javascript #typescript #webdeveloper
0
0
0
Java Tip π: Meet the Elvis Operator (Java 14+), not the King, but just as cool! Simplify null checks like never before with '?'. Elegant, concise, and a game-changer! πΈπ€.#java #Java14 #ElvisOperator #CodeSimplification
0
0
0
Instead of Object Type or Index Signature, is there any other way to define object types?.Yessssss π― we can use Record<K, V> type. Nice blog post: #typescript #javascript
0
0
0
How to Handle optional object properties in typescript?. Nullish coalescing (??) Operator helps to do that. #javascript #typescript #jstips
0
0
0
π‘Embrace the nullish coalescing operator:. a ?? b returns b only if a is null or undefined. Say goodbye to nested if statements for handling null checks! .#typescript #javascript #learning
0
0
0
π Dive into JavaScript closures: create functions within functions! ππ When an inner function has access to variables from its outer function, voila β you've just crafted a closure. πβ¨ Use closures for data encapsulation, private variables, and cleaner code! ππ».#JavaScript
0
0
0