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:-…
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…
Description:- This function swaps the array values of an array at specified positions. This function is more efficient than multiple <cfset> tags. arraySwap( array, position1, position2 );…
Description:- This is used to filter the elements of an array. this will return an array after filtering. arrayFilter( array, function( item [,index, array] ){…