From f2038c9eeab391ac294f6e7e5eb547aa9cf85946 Mon Sep 17 00:00:00 2001 From: Haocheng_Zhao Date: Sun, 6 Oct 2013 14:09:35 -0700 Subject: [PATCH] sam first commits --- hello.html | 2 ++ samzhao.js | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 samzhao.js diff --git a/hello.html b/hello.html index 1fd1524..15cb050 100644 --- a/hello.html +++ b/hello.html @@ -3,6 +3,7 @@ + Hello Team @@ -32,6 +33,7 @@ updateText(bob(), textContent); updateText(robert(), textContent); // Note: we need to add more function here for everyone to say hello. +updateText(samzhao(), textContent); // append the text content to the document document.body.appendChild(textContent); diff --git a/samzhao.js b/samzhao.js new file mode 100644 index 0000000..b830263 --- /dev/null +++ b/samzhao.js @@ -0,0 +1,4 @@ +//from Sam Zhao +function samzhao() { + return 'Sam Zhao says hello!' +} \ No newline at end of file