Difference between revisions of "JavaScript"

From Chessprogramming wiki
Jump to: navigation, search
(Created page with "'''Home * Programming * Languages * JavaScript''' '''JavaScript''' is a dynamically typed programming language with a prototype-based object system. It...")
 
(3 intermediate revisions by the same user not shown)
Line 7: Line 7:
 
* [[Stockfish#EvaluationGuide|Stockfish Evaluation Guide]] <ref>[https://hxim.github.io/Stockfish-Evaluation-Guide/ Stockfish Evaluation Guide]</ref>
 
* [[Stockfish#EvaluationGuide|Stockfish Evaluation Guide]] <ref>[https://hxim.github.io/Stockfish-Evaluation-Guide/ Stockfish Evaluation Guide]</ref>
 
* [[Zobrist Hashing#LackInt|Zobrist Hashing - Lack a True Integer Type]]
 
* [[Zobrist Hashing#LackInt|Zobrist Hashing - Lack a True Integer Type]]
 +
 +
=Publications=
 +
* [[Masatoshi Hidaka]], [https://dblp.org/pers/hd/k/Kikura:Yuichiro Yuichiro Kikura], [https://dblp.org/pers/hd/u/Ushiku:Yoshitaka Yoshitaka Ushiku], [https://dblp.org/pers/hd/h/Harada:Tatsuya Tatsuya Harada] ('''2017'''). ''WebDNN: Fastest DNN Execution Framework on Web Browser''. [https://dblp.org/db/conf/mm/mm2017.html ACM Multimedia 2017], [https://www.mi.t.u-tokyo.ac.jp/assets/publication/webdnn.pdf pdf] <ref>[https://github.com/mil-tokyo/webdnn GitHub - mil-tokyo/webdnn: The Fastest DNN Running Framework on Web Browser]</ref>
 +
* [[Masatoshi Hidaka]], [https://dblp.org/pers/hd/m/Miura:Ken Ken Miura], [https://dblp.org/pers/hd/h/Harada:Tatsuya Tatsuya Harada] ('''2017'''). ''Development of JavaScript-based deep learning platform and application to distributed training''. [https://arxiv.org/abs/1702.01846 arXiv:1702.01846], [https://dblp.org/db/conf/iclr/iclr2017w.html ICLR 2017] » [[Deep Learning]]
  
 
=Forum Posts=
 
=Forum Posts=

Revision as of 11:42, 1 August 2020

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

2011 ...

2015 ...

External Links

Repos

Online GUI

References

Up one Level