What means !! in arrow function bellow ? Differences betwen ! and !! ?
v => !!v || 'Required',
I'm using this function in vuetify rules props
nameRules: [
v => !!v || 'Required',
.....
What means !! in arrow function bellow ? Differences betwen ! and !! ?
v => !!v || 'Required',
I'm using this function in vuetify rules props
nameRules: [
v => !!v || 'Required',
.....
In vue.js (and javascript in general), one exclamation point negates an expression, two exclamation points ensures a boolean type