Advertisement
Guest User

Untitled

a guest
May 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. console.log( '\uac00' == '가' );
  2. // true
  3.  
  4. console.log( '\uac01' > '가' );
  5. // true
  6.  
  7. console.log( '\uac00\uac00' < '나' );
  8. // true
  9.  
  10. console.log( 'abc' < 'abd' );
  11. // true
  12.  
  13. console.log( '가'.localeCompare('\uac00') );
  14. // 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement