3

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',
       .....
Traxo
  • 18,464
  • 4
  • 75
  • 87

1 Answers1

3

In vue.js (and javascript in general), one exclamation point negates an expression, two exclamation points ensures a boolean type

v-gael
  • 126
  • 9