Get, Set, Getter & Setter en JavaScript

Page 1

G e t , G et t e r, S e t & S e t t e r Accesseur , Mutateur Pou r D é but a n t J AVA S C R I P T (Programmation Internet) J.B. Dadet DIASOLUKA Luyalu Nzoyifuanga +243 - 851278216 - 899508675 - 995624714 - 902263541 - 813572818 La dernière révision de ce texte est disponible sur CD.

I.

Généralité sur le « SET » et le « GET » :

« http://docs.w3cub.com/javascript/functions/get » et « http://docs.w3cub.com/javascript/functions/set » définisent le « get » et le « set » comme suit : [The get syntax binds an object property to a function that will be called when that property is looked up.] [The set syntax binds an object property to a function to be called when there is an attempt to set that property. ] Voici une syntaxe de « get » et de « set » avec un littéral d’objet : <script type="text/javascript"> "use strict"; let v = "valeur initiale"; var obj = { get dum() { return "Dans «get» v = "+v; }, set dum(value) { v = "Dans «set» v = "+value; console.log(v); } }; console.log(obj.dum);

// Appel de get.


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.