Created
September 30, 2019 14:52
-
-
Save bapHyv/bc04c896f6c5a283dfec9c0d5f2a2c75 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]; | |
| arr.length < 1 | |
| ? "<div class=d-flex> <img src=IMAGE_NIVEAU_1> </div>" | |
| : arr.length > 1 && arr.length <= 10 | |
| ? "<div class=d-flex> <img src=IMAGE_NIVEAU_1><img src=IMAGE_NIVEAU_2> </div>" | |
| : arr.length > 10 && arr.length <= 20 | |
| ? "<div class=d-flex> <img src=IMAGE_NIVEAU_1><img src=IMAGE_NIVEAU_2><img src=IMAGE_NIVEAU_3> </div>" | |
| : arr.length > 20 | |
| ? "<div class=d-flex> <img src=IMAGE_NIVEAU_1><img src=IMAGE_NIVEAU_2><img src=IMAGE_NIVEAU_3><img src=IMAGE_NIVEAU_4> </div>" | |
| : "there was an error"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment