cse110-fa22-group29/source/assets/scripts/ReviewPage.js
Arthur Lu 66dd92f0dc fix js linting
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
2022-11-15 00:53:07 +00:00

14 lines
354 B
JavaScript

// Run the init() function when the page has loaded
window.addEventListener("DOMContentLoaded", init);
function init() {
let result = sessionStorage.getItem("currReview");
let main = document.querySelector("main");
main.innerHTML = result;
let p = document.createElement("p");
p.innerHTML = JSON.parse(result)["comments"];
main.append(p);
}