Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 313 Bytes

20-with.md

File metadata and controls

22 lines (16 loc) · 313 Bytes

with

L'instruction with définit un objet de référence pour le bloc d'instruction qui suit.

with(objet) {
  //Instructions;
}

Il est ensuite utilisé comme référence implicite

with (Math) {
  x = 2;
  y = 10;

  resultat = pow(x, y);
 //sans "with" resultat = Math.pow(x, y)
}