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