-
-
Save areeng/417383f5022e29c16021ef10e6a091ad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let course = 'javascript', | |
title; | |
switch (course) { | |
case 'figma': | |
title = 'Робота з Figma'; | |
break; | |
case 'webflow': | |
title = 'Робота з Webflow'; | |
break; | |
case 'frontend': | |
title = 'Основи фронтенду. HTML і CSS'; | |
break; | |
case 'javascript': | |
title = 'JavaScript та основи програмування'; | |
break; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment