Forum Replies Created

  • Matt Ryan

    January 8, 2020 at 4:49 pm in reply to: Slider Control above 1 million

    This expression will give you commas as well as a number greater than 1,000,000

    num = Math.round(effect(“Point Control”)(“Point”)[0]);

    function addCommas(x) {
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, “,”);
    }

    addCommas(num)

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy