👉 In computer science, a sourceless function is one that does not return any value. In other words, it has no effect or output. For example: ``` function sayHello() { console.log("Hello"); } ``` This would be considered a sourceless function because there is no value returned by the function.