Angularjs Examples

AJS Examples


AngularJS Function Reference

Learn how to use AngularJS Function to display text in upper case or display text in lower case or check if variable contains string value. Sometimes you may need to chack if current object is function or is number or is date or is array. Click on "Try Now" button to modify and test code yourself.

AngularJS Function Reference

FunctionsDescriptionSee Live Example
lowercaseThis function is intended to converts the specified string to lowercase.Try Now
uppercaseThis function is intended to converts the specified string to uppercase.Try Now
forEachThis function is intended to iterator the each items in array.Try Now
extendThis function is intended to extend the destination object by copying the enumerable properties of object ie. var obj = angular.extend({}, obj1, obj2).Try Now
mergeThis function is intended to deeply extend the destination object by copying the enumerable properties of object ie. var obj = angular.merge({}, obj1, obj2).Try Now
noopThis function performs no operations, can be useful when writing code in the functional style.Try Now
identityThis function returns its first argument, can be useful when writing code in the functional style.Try Now
isUndefinedThis function is intended to identify if a reference is undefined.Try Now
isDefinedThis function is intended to identify if a reference is defined.Try Now
isObjectThis function is intended to identify if a reference is object, nulls are not considered to be objects.Try Now
isStringThis function is intended to identify if a reference is string.Try Now
isNumberThis function is intended to identify if a reference is number.Try Now
isDateThis function is intended to identify if a value is date.Try Now
isArrayThis function is intended to identify if a reference is array.Try Now
isFunctionThis function is intended to identify if a reference is function.Try Now
isElementThis function is intended to identify if a reference is DOM element.Try Now
copyThis function is intended to creates a deep copy of source object or an array.Try Now
equalsThis function is intended to identify two objects or two values are equivalent, it supports value types, regular expressions, arrays and objects.Try Now
bindAllows to work with partial functions.Try Now
toJsonThis function is intended to serializes input into a JSON-formatted string.Try Now
fromJsonThis function is intended to deserializes a JSON string.Try Now
bootstrapThis function is intended to manually start up angular application.Try Now
reloadWithDebugInfoThis function is intended to reload the current application with debug information turned on.Try Now
injectorThis function is intended to creates an injector object that can be used for retrieving services as well as for dependency injection.Try Now
elementThis function is intended to wraps a raw DOM element or HTML string as a jQuery element.Try Now
moduleThis function is a global place for creating, registering and retrieving Angular modules.Try Now