- The elements of the module are not related
- It is accidental
- Worst form of cohesion
Example
function capitalizeString(inputString) {
return inputString.toUpperCase()
}
function calcularCircleArea(radius) {
return Math.PI * radius * radius
}
Having the above functions within the same module is an example of coincidental cohesion