<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script type="text/javascript">
/*function show(a,b){
b=b||8;
return a+b;
}
alert(show(5,10));//15*/
/*function show(a,b=7){
b=b||8;
return a+b;
}
alert(show(5,10));//15*/
</script>
</body>
</html>