Skip to content
Advertisement

TypeError: ‘int’ object is not callable

Given the following integers and calculation

JavaScript

This results in:

JavaScript

How can I round the output to an integer?

Advertisement

Answer

Somewhere else in your code you have something that looks like this:

JavaScript

Then when you write

JavaScript

that is interpreted as meaning a function call on the object bound to round, which is an int. And that fails.

The problem is whatever code binds an int to the name round. Find that and remove it.

Advertisement