Does it matter to jQuery/javascript if the website server platform is 32 bit or 64 bit? I have some code written, which is currently running on 32 bit linux. will there be problem running this javascript (jQuery) code from a website hosted on 64 bit server?
Share
The CPU doesn’t matter, JavaScript is a high-level interpreted programming language, it doesn’t really care about the architecture at all, as long as the engine it runs on works correctly.
In your case it sounds like clientside JavaScript, which runs on the client (normally), and that’s basically the users computer and not your server.