diff --git a/hello.html b/hello.html index 1fd1524..f261803 100644 --- a/hello.html +++ b/hello.html @@ -3,6 +3,7 @@ + Hello Team @@ -31,12 +32,14 @@ updateText(elisabeth(), textContent); updateText(bob(), textContent); updateText(robert(), textContent); +updateText(portia(), textContent); // Note: we need to add more function here for everyone to say hello. // append the text content to the document document.body.appendChild(textContent); +I love writing text diff --git a/portia.js b/portia.js new file mode 100644 index 0000000..5d1fb6a --- /dev/null +++ b/portia.js @@ -0,0 +1,4 @@ +function portia() +{ + return "Portia Plante says HI EVERYONE!"; +} \ No newline at end of file