membalikkan tanggal dalam javascript

function convertDigitIn(str){
   return str.split('/').reverse().join('/');
}
Xenophobic Xenomorph