There are a couple of disadvantages, but as you've pointed out, there's also an advantage, so it's really up to you.
The two main disadvantages I'm aware of are:
Every instance gets its own function objects for each method (three months = three function objects per instance), rather than sharing via the prototype. That means:
You create a bunch more objects when you create the instance (the function code is shared, but each instance gets its own function objects), and
Inheriting may be trickier
It makes the methods harder to mock for testing purposes, because they're not on the prototype, they're built into each instance.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…