Both JavaScript and Python prohibit operations on types that don't support them. They both have TypeErrors (or something similar) that are thrown at runtime for certain operations, while others produce a result.
The difference is just that JavaScript allows a bunch of operations that Python prohibits, including several that serve almost no purpose.
Is allowing 1 + "1" allowing an operation on a type that doesn't support it, or does your language just allow adding numbers and strings? There is no principled way to answer that question.
That litmus test is probably not enough to make a true formal definition, but does allow you to make objective comparisons between languages for certain operations.
http://docs.julialang.org/en/latest/manual/conversion-and-pr...
As for Julia, I'm not sure how strongly or weakly typed it is, but I would probably put it at around the same level as Java.
With that in mind, shouldn't we expect it to be a good base case for describing the "weakest typed" language?
"Programming Languages: Application and Interpretation" Shriram Krishnamurthi, 2003.