570 documents trouvés pour « throw » en Français et en English (US). Affichage des résultats 1 à 10. Rechercher à nouveau en English (US) uniquement
L'instruction throw permet de lever une exception définie par l'utilisateur. L'exécution de la fonction courante sera stopée (les instructions situées après l'instruction throw ne seront pas exécutées) et le contrôle sera passé au premier bloc catch de la pile d'appels. Si aucun bloc catch ne se trouve dans les fonctions de la pile d'appels, le programme sera terminé.
developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Instructions/throw traduit depuis throw (Français)
La méthode throw() lève une erreur dans un générateur.
developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Objets_globaux/Generator/throw traduit depuis Generator.prototype.throw() (Français)
The throw statement throws a user-defined exception. Execution of the current function will stop (the statements after throw won't be executed), and control will be passed to the first catch block in the call stack. If no catch block exists among caller functions, the program will terminate.
developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/throw
The throw() method resumes the execution of a generator by throwing an error into it and returns an object with two properties done and value.
developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Generator/throw
When there is too much or infinite recursion, JavaScript will throw this error.
developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Too_much_recursion
The BluetoothRemoteGATTDescriptor.readValue() method returns a Promise that resolves to an ArrayBuffer holding a duplicate of the value property if it is available and supported. Otherwise it throws an error.
developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTDescriptor/readValue
The BluetoothRemoteGATTCharacteristic.readValue() method returns a Promise that resolves to a DataView holding a duplicate of the value property if it is available and supported. Otherwise it throws an error.
developer.mozilla.org/en-US/docs/Web/API/BluetoothRemoteGATTCharacteristic/readValue
Called by the nsIHttpChannel implementation when visiting request and response headers. This method can throw an exception to terminate enumeration of the channel's headers.
developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIHttpHeaderVisitor
The add() method of the DataStore interface adds a new record to the data store; if the record you are attempting to add already exists, it will throw an exception.
developer.mozilla.org/en-US/docs/Archive/B2G_OS/API/DataStore/add
IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined.
developer.mozilla.org/en-US/docs/Glossary/IIFE