< prev index next >

src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/Functions.properties

Print this page




 173 String.prototype.toLocaleUpperCase=returns a new string representing the calling string value converted to upper case according to any locale specific case mappings
 174 
 175 String.prototype.trim=returns a new string representing the calling string with white space removed from both ends
 176 
 177 Boolean.prototype.toString=returns string representation of specified Boolean object
 178 
 179 Boolean.prototype.valueOf=returns the primitive value of the specified Boolean object
 180 
 181 Number.prototype.toString=returns string representation of specified object in the specified radix
 182 
 183 Number.prototype.toLocaleString=returns a string with a language sensitive representation of this number
 184 
 185 Number.prototype.valueOf=returns the primitive value of the specified object
 186 
 187 Number.prototype.toFixed=returns a string representing the number in decimal fixed-point notation
 188 
 189 Number.prototype.toExponential=returns a string representing the number in decimal exponential notation
 190 
 191 Number.prototype.toPrecision=returns a string representing the number to a specified precision in fixed-point or exponential notation
 192 








































































































 173 String.prototype.toLocaleUpperCase=returns a new string representing the calling string value converted to upper case according to any locale specific case mappings
 174 
 175 String.prototype.trim=returns a new string representing the calling string with white space removed from both ends
 176 
 177 Boolean.prototype.toString=returns string representation of specified Boolean object
 178 
 179 Boolean.prototype.valueOf=returns the primitive value of the specified Boolean object
 180 
 181 Number.prototype.toString=returns string representation of specified object in the specified radix
 182 
 183 Number.prototype.toLocaleString=returns a string with a language sensitive representation of this number
 184 
 185 Number.prototype.valueOf=returns the primitive value of the specified object
 186 
 187 Number.prototype.toFixed=returns a string representing the number in decimal fixed-point notation
 188 
 189 Number.prototype.toExponential=returns a string representing the number in decimal exponential notation
 190 
 191 Number.prototype.toPrecision=returns a string representing the number to a specified precision in fixed-point or exponential notation
 192 
 193 Date.parse=returns a number, the UTC time value corresponding to the date and time interpreted from the given string argument, returns NAN if the argument is not recognized
 194 
 195 Date.UTC=returns the number of milliseconds in the given date object since January 1, 1970, 00:00:00 universal time
 196 
 197 Date.now=returns the number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC
 198 
 199 Date.prototype.toString=returns the string value representing the given date object
 200 
 201 Date.prototype.toDateString=returns the string value representing the date portion of the given date object
 202 
 203 Date.prototype.toTimeString=returns the string value representing the time portion of the given date object
 204 
 205 Date.prototype.toLocaleString=returns the string value representing the date according to language specific conventions
 206 
 207 Date.prototype.toLocaleDateString=returns the string value representing the date portion of the given date object according to language specific conventions
 208 
 209 Date.prototype.toLocaleTimeString=returns the string value representing the time portion of the given date object according to language specific conventions
 210 
 211 Date.prototype.valueOf=returns the number of milliseconds between January 1, 1970, 00:00:00 UTC and the given date
 212 
 213 Date.prototype.getTime=returns the number representing milliseconds elapsed between January 1, 1970, 00:00:00 UTC and the given date
 214 
 215 Date.prototype.getFullYear=returns the year of the given date according to local time
 216 
 217 Date.prototype.getUTCFullYear=returns the year of the given date according to universal time
 218 
 219 Date.prototype.getMonth=returns the month between 0 to 11 of the given date according to local time
 220 
 221 Date.prototype.getUTCMonth=returns the month between 0 and 11 of the given date according to universal time
 222 
 223 Date.prototype.getDate=returns the day of the month for the given date according to local time
 224 
 225 Date.prototype.getUTCDate=returns the day of the month for the given date according to universal time
 226 
 227 Date.prototype.getDay=returns the day of the week for the given date according to local time, 0 represents Sunday
 228 
 229 Date.prototype.getUTCDay=returns the day of the week for the given date according to universal time, 0 represents Sunday
 230 
 231 Date.prototype.getHours=returns the hour in the given date, according to local time
 232 
 233 Date.prototype.getUTCHours=returns the hour in the given date, according to universal time
 234 
 235 Date.prototype.getMinutes=returns the minutes in the given date, according to local time
 236 
 237 Date.prototype.getUTCMinutes=returns the minutes in the given date, according to universal time
 238 
 239 Date.prototype.getSeconds=returns the seconds in the given date, according to local time
 240 
 241 Date.prototype.getUTCSeconds=returns the seconds in the given date, according to universal time
 242 
 243 Date.prototype.getMilliseconds=returns the milliseconds in the given date, according to local time
 244 
 245 Date.prototype.getUTCMilliseconds=returns the milliseconds in the given date, according to universal time
 246 
 247 Date.prototype.getTimezoneOffset=returns the difference between local time and UTC time in minutes
 248 
 249 Date.prototype.setTime=sets the date object to the time given, which is represented by the number of milliseconds since January 1, 1970, 00:00:00 UTC
 250 
 251 Date.prototype.setMilliseconds=sets the milliseconds for the given date according to local time
 252 
 253 Date.prototype.setUTCMilliseconds=sets the milliseconds for the given date according to universal time
 254 
 255 Date.prototype.setSeconds=sets the seconds for the given date according to local time
 256 
 257 Date.prototype.setUTCSeconds=sets the seconds for the given date according to universal time
 258 
 259 Date.prototype.setMinutes=sets the minutes for the given date according to local time
 260 
 261 Date.prototype.setUTCMinutes=sets the minutes for the given date according to universal time
 262 
 263 Date.prototype.setHours=sets the hours for the given date according to local time
 264 
 265 Date.prototype.setUTCHours=sets the hours for the given date according to universal time
 266 
 267 Date.prototype.setDate=sets the day of the month for the given date according to local time
 268 
 269 Date.prototype.setUTCDate=sets the day of the month for the given date according to universal time
 270 
 271 Date.prototype.setMonth=sets the month for the given date according to the currently set year
 272 
 273 Date.prototype.setUTCMonth=sets the month for the given date according to the universal time
 274 
 275 Date.prototype.setFullYear=sets the full year for the given date according to local time
 276 
 277 Date.prototype.toUTCString=converts the given date to a string using UTC time zone
 278 
 279 Date.prototype.toISOString=returns the string value in ISO 8601 format for the given date according to universal time
 280 
 281 Date.prototype.toJSON=returns the string representation of the given date
 282 
 283 RegExp.prototype.exec=returns an array object containing the results of match of given string against regular expression, null if no match found
 284 
 285 RegExp.prototype.test=returns true if match of given string against regular expression found, else returns false
 286 
 287 RegExp.prototype.toString=returns string representation of regular expression
 288 
 289 Error.prototype.toString=returns string representation of error object
 290 
 291 JSON.parse=returns an object by parsing given string as JSON
 292 
 293 JSON.stringify=returns a JSON string corresponding to the given ECMAScript value
 294 
< prev index next >