First of all I am not a professional programmer, but a student with a programming hobby so I am sorry if my question is stupid.
I want to write a chess engine to be used on the web and had already started writing it in JavaScript. After searching around I however found out that JavaScript is not ideal for this task. I have already written the user interface in JavaScript and would prefer if I could keep it while rewriting the game logic in python. Is this possible?
int
will not be as fast as native 64-bit ints, even in Python 2, because of overflow checks); if your goal is performance, you will not get it with either language. To use 64-bit integers in JavaScript, it is typical to use a library which offers them. – Fengyang Wang Sep 11 at 1:51