The Intl.Collator.prototype.resolvedOptions() method is an inbuilt method in JavaScript which is used to return a new object with properties reflecting the locale and collation options computed during initialization of this Collator object.
Syntax:
collator.resolvedOptions()
Parameters: This function does not accept any parameter.
Return value: This method returns a new object with properties reflecting the locale and collation options computed during the initialization of the given Collator object.
Below examples illustarte the in Intl.Collator.prototype.resolvedOptions() Method JavaScript:
Example 1:
var vall = new Intl.Collator( 'de' , { sensitivity: 'base' }) var geek = vall.resolvedOptions(); console.log(geek.locale); console.log(geek.usage); console.log(geek.sensitivity); console.log(geek.ignorePunctuation); console.log(geek.collation); console.log(geek.numeric); |
Output:
"de" "sort" "base" false "default" false
Example 2:
let geek = new Intl.Collator( 'de-DE' ); let geek1 = new Intl.Collator( 'ar' ); let geek2 = new Intl.Collator( 'hi' ); let val1 = geek.resolvedOptions(); let val2 = geek1.resolvedOptions(); let val3= geek2.resolvedOptions(); console.log(val1.sensitivity); console.log(val2.collation); console.log(val3.numeric); |
Output:
"variant" "default" false
Supported Browsers: The borwsers supoorted by Intl.Collator.prototype.resolvedOptions() method are listed below:
- Google Chrome
- Firefox
- Opera
- Edge
- IE
- Safari