Improve this Doc

Error: $parse:isecff
Referencing 'call', 'apply' and 'bind' Disallowed

Referencing call, apply or bind in Angular expressions is disallowed! Expression: {0}

Description

Occurs when an expression attempts to invoke Function's 'call', 'apply' or 'bind'.

Angular bans the invocation of 'call', 'apply' and 'bind' from within expressions since access is a known way to modify the behaviour of existing functions.

To resolve this error, avoid using these methods in expressions.

Example expression that would result in this error:

<div>{{user.sendInfo.call({}, true)}}</div>