7 lines
189 B
JavaScript
7 lines
189 B
JavaScript
response.write("hello world")
|
|
console.log("hello world")
|
|
function testError(){
|
|
throw Error("Method not implemented")
|
|
}
|
|
response.setHeader("content-type", "application/json")
|
|
testError() |