Format currency

Help me please…
//Auto format #input6 & #text71 to currency “Indonesia Rupiah” (IDR 13.000) ???

$w.onReady( function () {
//AYAM MENTEGA
$w( ‘#buttonM1’ ).onClick((event) => {
$w( ‘#inputM1’ ).value = Number($w( ‘#inputM1’ ).value) - 1 ;
$w( “#input6” ).value = Number($w( “#inputM1” ).value) * 13000 ;
$w( “#text71” ).text = $w( “#input6” ).value
});