1

Is there any way to use toLocaleString() method in nativescript Please check toLocaleString - {N} Playground


<script>
    export default {
        data() {
            return {
                trDate: new Date(1579180347000).toLocaleString("tr"), 
                // should print 16.01.2020 16:12:27

            };
        }
    };
</script>

Browser compatibility docs says :

nodejs

Does it means that I better use some other…

Open Full Question