Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

32bit or 64 bit does it matter to jquery/javascript?

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?

like image 286
rajeev Avatar asked Dec 12 '25 17:12

rajeev


1 Answers

No, it makes no difference at all. Your JavaScript isn't ran on any CPU directly. CPU architecture only matters for compiled code.

like image 190
Brad Avatar answered Dec 15 '25 17:12

Brad