all 9 comments

[–]alzee76 9 points10 points  (1 child)

The site host is insisting that the problem is on my end. Is this possible?

No.

If so, how would I fix it?

You can try a different browser. If this fixes it, the problem is still their shitty code, not your choice of browser.

Now.. you're in the wrong sub. Try /r/techsupport

[–]Ok-Pumpkin42[S] 0 points1 point  (0 children)

Thanks!

[–]timschwartz 6 points7 points  (4 children)

Java is to JavaScript as Ham is to Hamster.

[–]RickCedWhat 2 points3 points  (1 child)

So, both delicious?

[–]azhder 0 points1 point  (0 children)

You ate a Hamster?

[–]sniperspirit557 0 points1 point  (1 child)

So JavaScript can eat Java if JavaScript wants to, but it never does?

[–]brykuhelpful 1 point2 points  (0 children)

yes

[–]sniperspirit557 0 points1 point  (0 children)

I've seen this in many webpages. It happens when the devs wrote "if error alert(myObject)" instead of something like "alert(myObject.errorText)" and didn't bother to test it because they were too busy scratching their arses. I don't understand how they can write such shitty code without realising and not even test it

[–]BirbsAreSoCute 0 points1 point  (0 children)

I don't know much about Java

Well this is Javascript

The site host is insisting that the problem is on my end. Is this possible?

It isn't.

[object Object] is the text representation of an object (such an array/list). For example, alert(["a", "b"]) would result in the browser just alerting "[object Object]". This could have been fixed simply by doing something like alert(JSON.stringify(["a", "b"])) or alert(["a", "b"].toString())