Alba Silvente Fuentes cover image
Alba Silvente Fuentes
Alba Silvente Fuentes
@dawntraoz
I'm writing about FrontEnd and working hard on the open-source to create more value for the web community!
Netherlands
Joined on Jan 12, 2023
4 posts
9 followers
8 following

Converting an Int Value to String

To convert an integer value to a string in Go, you can use the strconv package, which provides functions for handling string conversions. Using strcon...
Converting an Int Value to String

Using .env Variables in Main App Module File for DB Connection

In NestJS, you can use .env variables to manage configuration settings, such as database connection details, in a more secure and flexible manner. Thi...
Using .env Variables in Main App Module File for DB Connection

Converting a String to Enum

In TypeScript, you can convert a string to an enum value by using the enum and valueOf() method. Enumerations, or enums, provide a way to define a set...
Converting a String to Enum

Understanding Unique Keys for Array Children

In React, when rendering arrays of elements as children, it is essential to provide a unique key prop for each child. #1. Why Keys are Necessary Keys...