The code powering m.abunchtell.com https://m.abunchtell.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

11 satır
213 B

  1. export default function compareId(id1, id2) {
  2. if (id1 === id2) {
  3. return 0;
  4. }
  5. if (id1.length === id2.length) {
  6. return id1 > id2 ? 1 : -1;
  7. } else {
  8. return id1.length > id2.length ? 1 : -1;
  9. }
  10. }