Description:- This is used to determine whether a directory exists either on disk or in memory. directoryExists( path ); This function returns a boolean value.…
Description:- This is used to get the specific name of the month from the given month_number fall. monthAsString( month_number, locale ); This function returns a string,…
Description:- This is used to get a specific part from a datetime object. datePart( datepart_argument, datetime_object ); This function returns a part of a date,…
Description:- Determines whether a year is a leap year. isLeapYear( year_as_neumeric_value ); Attributes:- year:- This is a required numeric argument, the number representing a year.…
Description:- This is used to decode an encoded HTML URL string. decodeFromURL( encoded_HTML_string ); Attributes:- string:- This is a required argument, the encoded string which needs…
Description:- This is used to encode the input string for safe output in URLs to prevent cross-site scripting attacks. encodeForURL( string [, canonicalize] ); Attributes:-…
Description:- This function adds one or more elements to the original array’s beginning and returns the modified array’s length. arrayUnshift( array, object ); Member Function…