Difference between revisions of "JavaScript"

From Chessprogramming wiki
Jump to: navigation, search
 
Line 36: Line 36:
 
* [http://www.youtube.com/playlist?list=PLZ1QII7yudbe4gz2gh9BCI6VDA-xafLog Programming A Javascript Chess Engine] - [https://en.wikipedia.org/wiki/YouTube YouTube] Videos by [[BlueFeverSoft]]
 
* [http://www.youtube.com/playlist?list=PLZ1QII7yudbe4gz2gh9BCI6VDA-xafLog Programming A Javascript Chess Engine] - [https://en.wikipedia.org/wiki/YouTube YouTube] Videos by [[BlueFeverSoft]]
 
* [https://hxim.github.io/Stockfish-Evaluation-Guide/ Stockfish Evaluation Guide] » [[Stockfish#EvaluationGuide|Stockfish Evaluation Guide]]  
 
* [https://hxim.github.io/Stockfish-Evaluation-Guide/ Stockfish Evaluation Guide] » [[Stockfish#EvaluationGuide|Stockfish Evaluation Guide]]  
 +
* [https://medium.com/hootsuite-engineering/a-gentle-introduction-to-object-oriented-programming-in-javascript-a46f25de8b07 A Gentle Introduction to Object-Oriented Programming in JavaScript] by [[Rhys Rustad-Elliott]], August 30, 2016
 
==Repos==
 
==Repos==
 
* [https://github.com/cosinekitty/flywheel GitHub - cosinekitty/flywheel: A chess engine for the web browser] by [[Don Cross]]
 
* [https://github.com/cosinekitty/flywheel GitHub - cosinekitty/flywheel: A chess engine for the web browser] by [[Don Cross]]

Latest revision as of 11:34, 24 April 2021

Home * Programming * Languages * JavaScript

JavaScript is a dynamically typed programming language with a prototype-based object system. It is interesting because it runs in web browsers and has received more than its fair share of optimization effort. Modern JavaScript engines with JIT compilation can play chess well enough to be interesting.

See also

Publications

Forum Posts

2010 ...

2015 ...

2020 ...

External Links

Repos

Online GUI

References

Up one Level