'What is the meaning of '$' sign in react js
I was using the '$' in my program but don't know the exact meaning of it.
For example: input_${props.id}
Solution 1:[1]
it is Template literals
it use for provide an easy way to interpolate variables and expressions into strings.
you can get more detail here
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Jay |
