Properties

Multi-select

A drop­down menu for select­ing mul­ti­ple tags.

prop("Multi-select")
=
Lorem, Ipsum, Dolor
prop("Multi-select")
    .map(
        (index + 1) + ". " + current
    )prop("Multi-select")

    /* Use 'map' to perform operations on each selected item */
    .map(

        /* Return the item's index, adding 1. */
        (index + 1)

        /* Add a full stop and a space */
        + ". " 
        
        /* Add the item's value */
        + current

    )
=
1. Lorem, 2. Ipsum, 3. Dolor