Riferimento JavaScript Questo capitolo documenta tutti gli oggetti standard predefiniti di JavaScript, con i loro metodi e le loro proprietà.
{{page('/it/docs/Web/JavaScript/Reference/Global_Objects', 'Oggetti_standard_(per_categoria)')}}
Questo capitolo documenta tutti gli statements e le dichiarazioni JavaScript.
For an alphabetical listing see the sidebar on the left.
Control flow
Block (en-US)
A block statement is used to group zero or more statements. The block is delimited by a pair of curly brackets.
break
Terminates the current loop, switch, or label statement and transfers program control to the statement following the terminated statement.
continue (en-US)
Terminates execution of the statements in the current iteration of the current or labeled loop, and continues execution of the loop with the next iteration.
Empty
An empty statement is used to provide no statement, although the JavaScript syntax would expect one.
if...else (en-US)
Executes a statement if a specified condition is true. If the condition is false, another statement can be executed.
switch
Evaluates an expression, matching the expression's value to a case clause, and executes statements associated with that case.
throw
Throws a user-defined exception.
try...catch (en-US)
Marks a block of statements to try, and specifies a response, should an exception be thrown.
Declarations
var
Declares a variable, optionally initializing it to a value.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
let
Declares a block scope local variable, optionally initializing it to a value.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
const (en-US)
Declares a read-only named constant.
Functions and classes
function (en-US)
Declares a function with the specified parameters.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
function*
Generators functions enable writing iterators more easily.
return (en-US)
Specifies the value to be returned by a function.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
class (en-US)
Declares a class.
Iterations
do...while (en-US)
Creates a loop that executes a specified statement until the test condition evaluates to false. The condition is evaluated after executing the statement, resulting in the specified statement executing at least once.
for (en-US)
Creates a loop that consists of three optional expressions, enclosed in parentheses and separated by semicolons, followed by a statement executed in the loop.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
for each...in
Iterates a specified variable over all values of object's properties. For each distinct property, a specified statement is executed.
for...in (en-US)
Iterates over the enumerable properties of an object, in arbitrary order. For each distinct property, statements can be executed.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
for...of
Iterates over iterable objects (including arrays , array-like objects, iterators and generators ), invoking a custom iteration hook with statements to be executed for the value of each distinct property.
while (en-US)
Creates a loop that executes a specified statement as long as the test condition evaluates to true. The condition is evaluated before executing the statement.
Others
debugger (en-US)
Invokes any available debugging functionality. If no debugging functionality is available, this statement has no effect.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
export
Used to export functions to make them available for imports in external modules, another scripts.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
import
Used to import functions exported from an external module, another script.
label (en-US)
Provides a statement with an identifier that you can refer to using a break or continue statement.
Riferimento JavaScript - JavaScript | MDNThis is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This deprecated API should no longer be used, but will probably still work.This API has not been standardized.This is an obsolete API and is no longer guaranteed to work.This is an experimental API that should not be used in production code.This deprecated API should no longer be used, but will probably still work. - web.archive.org
with (en-US)
Extends the scope chain for a statement.
Questo capitolo documenta espresisioni e operatori di JavaScript.
{{page('/it/docs/Web/JavaScript/Reference/Operators', "Expressions_and_operators_by_category", "", 1)}}
Questo capitolo documenta come usare le funzioni in JavaScript.