JAVASCRIPTは in English translation

Examples of using Javascriptは in Japanese and their translations into English

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
PHPのvar_dumpやprint_rに相当するJavaScriptは何ですか?
What is the JavaScript equivalent of var_dump or print_r in PHP?
それはAngularJSやNodeJSをカバーしていませんが、ここでカバーされているJavaScriptはあなたがそれらの技術を学ぶために準備するでしょう。
It does not cover AngularJS or NodeJS, but the JavaScript covered here will prepare you to learn those technologies.
このポリシーで実行されるJavaScriptは、ApigeeJavaScriptオブジェクトモデルを使用します。このモデルは、リクエスト、レスポンス、コード実行中のAPIプロキシフローと関連付けられたコンテキストオブジェクトに対して、カスタムコードアクセスを提供します。
JavaScript that is executed by this policy uses the Apigee JavaScript Object Model, which provides your custom code access to request, response, and context objects associated with the API proxy flow in which your code is executing.
JavaScriptは、2015年4月時点で188,168ドル(約2000万円)だったが、今では124,oo0ドル(約1300万円)に減っていて、落ち込みが大きい。
JavaScript has a salary of$ 188,168(about 20 million yen) as of April 2015, now it is decreasing to 124, oo 0 dollars(about 13 million yen), and it is greatly depressed.
例えば、JavaScriptは一般的にブラウザ内部で使用され、そのDocumentObjectModel(DOM)
For example, JavaScript is generally used within a browser
JavaScriptはcatchブロックに入るときにこの識別子を作成します。識別子はcatchブロックの区間だけ存続します。つまり、catchブロックの実行が終わると、その識別子はもう使えなくなります。
JavaScript creates this identifier when the catch block is entered; the identifier lasts only for the duration of the catch block; after the catch block finishes executing, the identifier is no longer available.
例えば、上記のコードでobjキーがmyObjに追加されるとき、JavaScriptはobj.toString()メソッドを呼び出し、結果の文字列を新しいキーとして使用します。
For example, in the above code, when the key obj is added to the myObj, JavaScript will call the obj. toString() method, and use this result string as the new key.
クラス構文は「これは関数じゃない、それはクラスでコンストラクタを持っている」と言ってくれるもしnewをつけ忘れて呼ぶとJavascriptはエラーを発生させる。。
Class syntax lets us say:“This isn't just a function- it's a class and it has a constructor”. If you forget new when calling it, JavaScript will raise an error.
MDNはじめにHTMLがウェブページの構造と内容を定義し、CSSが書式と外観を定義しているのに対し、JavaScriptはインタラクティブ機能をウェブページに追加し、豊かなウェブアプリケーションを作成します。
CSS sets the formatting and appearance, JavaScript adds interactivity to a webpage and creates rich web applications.
前述のJSOMライブラリはリモートページでは使用できませんが、プロバイダーホスト型アドインはアドインWeb内にカスタムSharePointページを持つことができ、これらのページ上のJavaScriptはJSOMライブラリを使用できます。
The JSOM library, mentioned earlier, cannot be used on a remote page, but provider-hosted add-ins can have custom SharePoint pages in an add-in web, and JavaScript on these pages can use the JSOM library.
しかしJavaScriptは複雑すぎて、場合によってはテストのためにコード自体に近いレベルの、JavaScript用のユニットテストのようなものが必要になります。そのような場合にJasmineを使用します。
Sometimes, however, the JavaScript is complicated enough that we need something closer to the code itself, something like unit testing for JavaScript, and this is where Jasmine comes in.
Gmailスケールの効率的メモリ管理-HTML5RocksはじめにJavaScriptはガベージコレクションによる自動メモリ管理の機能を備えますが、アプリケーションが効率的なメモリ管理を全くせずに済むわけではありません。
Effectively managing memory at Gmail scale- HTML5 Rocks Introduction While JavaScript employs garbage collection for automatic memory management, it is not a substitute for effective memory management in applications.
警告なしでこの値をechoする場合、JavaScriptはすべてのブラウザーで実行され、アラートを表示するよりはるかに危険な攻撃を許してしまいます。
If you echo this value without caution, the JavaScript will execute on every browser and allow for much more dangerous attacks than just displaying an alert.
非同期コールバックを割り当てるとイベントドリブンなコードを書くことができますが、JavaScriptは直線的には実行されないため、バグを追い掛けるのがやっかいです。
Assigning async callbacks let you write event-driven code but it also makes tracking down bugs a hair pulling experience since the JavaScript is not executing in a linear fashion.
このブロック内のJavaScriptはそのイベントが発生するまで実行されないため、エラーは回避されます(コースの後半でイベントについて学習します)。
The JavaScript inside this block will not run until after that event is fired, therefore the error is avoided(you will learn about events later in the course).
JavaScriptは他のサイトからダウンロードされた文書のURLをすべて復元することはできませんが、以下の要素のリストを盗むことはできます。
A JavaScript can't recover the URL of a document downloaded from another site, but it appears that it can steal a listing of the following document elements.
URLの1つに対する接続が失敗した場合、JavaScriptは1,000msスリープした後、URLの配列の反復処理を継続します。
If a connection to one of the URLs fails, the JavaScript sleeps for 1,000 ms before continuing to iterate over the array of URLs.
将来バージョンのJavascriptはまた、徐々に、V8のような現在のJavascriptVMへの道を作っており、フォームでDynamicプロキシという同じような機能をサポートする。
Future versions of Javascript are also supposed to have a similar feature in the form of Dynamic Proxies, which are slowly making their way into current Javascript VMs, such as V8.
JavaScriptは長い間moduleシステムを持っていませんでしたが、2009年Node.jsがCommonJSというmoduleシステムを使い始めて以来、JSでもmodule化したコードを書くのが普通になりました。
For long, there has been no module system for JavaScript, but ever since Node. js started to use a module system called CommonJS from 2009, modular programming became a common practice.
LiveScriptからJavaScriptへ改名する理由ともなった、Javaが持つ多くの式構文、命名規則と基本的な制御フローをJavaScriptは踏襲しています。
JavaScript follows most Java expression syntax, naming conventions and basic control-flow constructs which was the reason why it was renamed from LiveScript to JavaScript.
Results: 533, Time: 0.0356

Javascriptは in different Languages

Top dictionary queries

Japanese - English