Toggle navigation
Toggle navigation
This project
Loading...
Sign in
성준영
/
webservice-practices
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
성준영
2017-04-27 11:27:14 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8ca1823813140b997067cec5be5d8443d8e6b801
8ca18238
1 parent
176df522
별찍기
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
practice_15/index.html
practice_15/index.html
0 → 100644
View file @
8ca1823
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
<script>
var
ast
=
""
;
for
(
var
i
=
1
;
i
<=
5
;
i
++
)
{
ast
=
""
;
for
(
var
j
=
0
;
j
<
i
;
j
++
)
{
ast
+=
"*"
;
}
document
.
write
(
ast
);
document
.
write
(
"<br/>"
);
}
</script>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment