--- title: performance.toJSON() slug: Web/API/Performance/toJSON tags: - API - Method - Méthode - Performance Web - Référence translation_of: Web/API/Performance/toJSON ---
{{APIRef("High Resolution Timing")}}

La méthode toJSON() de l'interface {{domxref("Performance")}} est un sérialiseur standard : elle renvoie une représentation JSON des propriétés de l'objet performance.

{{AvailableInWorkers}}

Syntaxe

  myPerf = performance.toJSON()

Arguments

Aucun

Valeur de retour

myPerf
Un objet JSON qui est la sérialisation de l'objet {{domxref("Performance")}}.

Exemple

var js;
js = window.performance.toJSON();
console.log("json = " + JSON.stringify(js));

Spécifications

Spécification Statut Commentaire
{{SpecName('Highres Time Level 2', '#dom-performance-tojson', 'toJSON() serializer')}} {{Spec2('Highres Time Level 2')}} Définition de toJson().

Compatibilité des navigateurs

{{Compat("api.Performance.toJSON")}}