Skip to content

Instantly share code, notes, and snippets.

@bapHyv
Created September 30, 2019 14:52
Show Gist options
  • Select an option

  • Save bapHyv/bc04c896f6c5a283dfec9c0d5f2a2c75 to your computer and use it in GitHub Desktop.

Select an option

Save bapHyv/bc04c896f6c5a283dfec9c0d5f2a2c75 to your computer and use it in GitHub Desktop.
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