Não é possível coagir `sujo` a cordas porque booleano [1] não deve ser coagido.

//this happens commonly when using flow
//you need to explicitly cast your boolean to string.
console.log(`this is ${String(true)}`) =>  //this is true
tinydev