31/08/2024
Common Naming Conventions in Programming:
1. Camel Case: camelCase
2. Kebab Case: kebab-case
3. Snake Case: snake_case
4. Pascal Case: PascalCase
5. Screaming Snake Case: SCREAMING_SNAKE_CASE
6. Train Case: Train-Case
28/08/2024
Today's react tip: use Memoization for Expensive Calculations.
useMemo hook prevents recalculating values on every render if dependencies havenβt changed.
27/08/2024
Just uploaded a new video on arrays in Java Dive in and check it out now! π
Arrays in Java for Beginners | Learn Java Data Structures Step by Step
In this video of our Data Structures in Java course, we delve into arrays, exploring their different types and practical applications. Learn about one-dimens...
27/08/2024
π New Video! π
Check out our latest tutorial on Java Arrays: One-Dimensional & Multi-Dimensional Arrays with practical examples!
Watch now: https://www.youtube.com/watch?v=pLLzRJEuoHg
π Donβt forget to subscribe for more tips!
26/08/2024
Today's Javascript Tip: Dynamic Object Keys
this technique allows us to create object properties dynamically.
25/08/2024
Today's Javascript Tip: When the property name and variable name are the same, you can omit the value using object property shorthand.
24/08/2024
How to become 10x Developer? π€
24/08/2024
Today's Javascript Tip: extract multiple properties from an object or elements from an array into variables using destructuring assignment.
23/08/2024
Today's Javascript Tip: Use ?? to provide a default value only when the left operand is null or undefined.
22/08/2024
Today's CSS Trick: Shorten your code by using CSS shorthand properties.