What would be the difference between the following:
.map((word) => word && '')
And
.map((word) => '')
Both of them seem to return same value.
What would be the difference between the following:
.map((word) => word && '')
And
.map((word) => '')
Both of them seem to return same value.