DEV Community

Discussion on: Quick guide for YAML

Collapse
 
jwp profile image
JWP

What does this mean?
!!yes bool

Collapse
 
mariamarsh profile image
Maria 🍦 Marshmallow

The expression "!!yes bool" is a reference to a boolean value in programming. The double exclamation marks (!!) before "yes" indicate a forced conversion of the string "yes" to a boolean value. Since the string "yes" is a truthy value, this conversion would result in the value "true".