Skip to content

Instantly share code, notes, and snippets.

@ppillip
Created April 16, 2020 05:32
Show Gist options
  • Save ppillip/b8e8251e6a436007fa23f675d08edf84 to your computer and use it in GitHub Desktop.
Save ppillip/b8e8251e6a436007fa23f675d08edf84 to your computer and use it in GitHub Desktop.
싀뷅의 리엑티비티
<script>
let A1 = "Park" ;
let B1 = "Seung hyun" ;
let C1 = "" ;
$: C1 = A1 + " " + B1;
$: D1 = C1 + " 메롱";
</script>
<p/> Givenname = <input type="text" bind:value="{A1}"/>
<p/> Surame = <input type="text" bind:value="{B1}"/>
<p/> Fullname = {C1}
<p/> ㅋㅋㅋ {D1}
<p/> {A1 + " " + B1}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment