I think that's too broad and somewhat outdated. C++ has const, for example, and you're expected to use it. Java and C# give you final/readonly, and not only that, but immutability is becoming more idiomatic, with the language increasingly encouraging it. For example, in modern C#,
record Point(double X, double Y);
is immutable, whereas the mutable equivalent is the much more verbose:
record Point {
public required double X { get; set; }
public required double Y { get; set; }
}
Java goes even further by not even having syntax for mutable records - if you want something like that, you have to write it out as a regular class.