1. 程式人生 > >【ECMAScript 5_6_7】8、ES6——形參預設值

【ECMAScript 5_6_7】8、ES6——形參預設值

一、形參預設值

* 形參的預設值----當不傳入引數的時候預設使用形參裡的預設值
function Point(x = 1,y = 2) {
this.x = x;
this.y = y;
}

 

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>08_形參預設值</title>
</head>
<body>

<script type="text/javascript">
  function Point(x,y) {
    this.x = x
    this.y = y
  }
  let point = new Point(20,25)
  console.log(point)

  function Point1(x = 0,y = 0) {  // 不傳入引數時,可以使用形參內指定的預設值
    this.x = x
    this.y = y
  }
  let point1 = new Point1()
  console.log(point1)
</script>

</body>
</html>