함수 정의와 실행
실습 코드
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script type="text/javascript">
function a(){
document.write("a를 실행 ");
}
a();
</script>
<?php
function b(){
echo "b를 실행 ";
}
b();
?>
</body>
</html>
함수의 입출력
입출력 기본
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script type="text/javascript">
function a(input){
document.write(input+1);
}
a(1);
</script>
<?php
function b($num){
echo $num+1;
}
b(5);
?>
</body>
</html>
return 이용
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script type="text/javascript">
function a(input){
return input+1;
}
document.write(a(1));
</script>
<?php
function b($num){
return $num+1;
}
echo b(5);
?>
</body>
</html>
'웹 프로그래밍' 카테고리의 다른 글
JavaScript 실습 (0) | 2017.12.20 |
---|---|
UI vs API (0) | 2017.12.19 |
자바스크립트, PHP로 로그인 기능 구현하기 (0) | 2017.12.19 |
변수 (0) | 2017.12.18 |
디버그 (0) | 2017.12.18 |