Answer the question
In order to leave comments, you need to log in
What do these operators mean?
I started to study pug, please tell me what these operators mean:
classes += options.type ? ' button_' + options.type : ''
options.text || 'Button'
in Pug.
Answer the question
In order to leave comments, you need to log in
the same as js
ternary operator
https://developer.mozilla.org/ru/docs/Web/JavaScri...
+=
https://learn.javascript.ru/operators#sokraschyonn...
options.text || 'Button' is a check for a non-empty variable, will return options.text if there is something there or 'Button'
https://learn.javascript.ru/logical-operators#ili-...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question