Description:- This is used to create a directory on disk or in memory. directoryCreate( path ); Attributes:- path:- This is a required attribute, the path of…
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:- Encrypting JavaScript is a way to add a layer of protection to your website by making your code harder to understand or hack/modify. this…
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:-…