タグ in JavaScript
人気順 10 users 50 users 100 users 500 users 1000 usersJS に TS のような型注釈を書ける Type Annotations プロポーザル
この記事では Type Annotations プロポーザルの概要とモチベーションについて説明する。 概要 Type Annotations プロポーザルは 2022 年の 3 月 9 日に Microsoft の TypeScript チームの Program Manager である Daniel Rosenwasser 氏のブログ記事 A Proposal For Type Syntax in JavaScript で発表され、2022 年 3 月... 続きを読む
A Proposal For Type Syntax in JavaScript
Today we’re excited to announce our support and collaboration on a new Stage 0 proposal to bring optional and erasable type syntax to JavaScript. Because this new syntax wouldn’t change how surrounding code runs, it would effectively act as comments. We think this has the potential to make TypeSc... 続きを読む
関数型プログラミング in JavaScript - Qiita
要は手続き型から関数型へリファクタリングしていくって記事です。 ベタに書く 各項目を3倍するプログラムを考えてみましょう const input = [1,2,3,4,5,6,7,8,9,10] const output = [] for(const item of input) { output.push(item * 3) } console.log(output) 続きを読む
作って学ぶ、ざっくり関数型プログラミング in javascript
4桁の文字列("1060")を時間({m:11, s:00})に変換するapiを作りながら、 関数型プログラミングについて学んで行きたいと思います。 関数型プログラミングとは 参考: JavaScriptで学ぶ関数型プログラミング 関数型プログラミングとは、値を抽象の単位に変換する関数を使用して行うプログラミングであり、 それらを使ってソ... 続きを読む
javascript - Can (a ==1 && a== 2 && a==3) ever evaluate to true? - Stack Overflow
Is it ever possible that (a ==1 && a== 2 && a==3) could evaluate to true , in JavaScript? This is interview question asked by a major tech company. My answer was that it's impossible. They said nothin... 続きを読む
GitHub - nicolaspanel/numjs: Like NumPy, in JavaScript
README.md NumJs is a npm/bower package for scientific computing with JavaScript. It contains among other things: a powerful N-dimensional array object linear algebra function fast Fourier transform to... 続きを読む
JavaScriptで書かれたJavaVM「Doppio」。Javaプラグイン不要に - Publickey Topics
Doppio: A Java Virtual Machine, Compiler and Disassembler in JavaScript - Badass JavaScript Basically, Doppio is a project to get Java running in the browser without plugins. It includes an implementa... 続きを読む