1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
+1 vote
1.0K views
by terrie-g-7436 (4.0k points)
I have created a function called CalcAge.  When I try to use it in a mapping, I get the above error.

1 Answer

+1 vote
QIE uses JSHint to validate javascript code. JSHint expects functions that start with a capital letter to be object definitions. To resolve this error you can rename your function to start with a lower case letter, or simply ignore the error message.
by terrie-g-7436 (4.0k points)
...