This commit is contained in:
Ilya Kantor 2016-05-26 12:43:54 +03:00
parent 6522852dc7
commit 88bd9889a2
92 changed files with 4044 additions and 0 deletions

View file

@ -0,0 +1,9 @@
```js
let message = (login == 'Employee') ? 'Hello' :
(login == 'Director') ? 'Greetings' :
(login == '') ? 'No login' :
'';
```