Is it normal for a single C++/Qt5 app to have multiple independent instances of JavaScript engine? In my app, I have several QObject-inherited objects which act as independent data-processing units. In each of them, I want to be able to launch JS scripts, and I want contexts of those scripts to be independent among these units. The simplest idea is to make each of the units to have its own instance of QJSEngine. A simple test shows that if I create two engines in the same app and set a custom global property in one of them, this property is not known to the second engine, which is what I want. But still it is not obvious that there are no some global state-properties which are common to all instances of QJSEngine. The issue of multiple instances seems to be never mentioned in the official Qt docs. Is that sufficient to conclude that having multiple instances poses no problems?