I was wondering between the transpiler and compiler.
For example, I have a language('let's call it foo') and it will be transpiled to javascript.
foo -----transpiled-----> javascript
However, is foo limited under javascript?
Such as: "JavaScript cannot write to files on the server without the help of a server side script"
foo ----x----> write to files on the server without the help of a server side script
If so, is it possible to exit from the limit of javascript?
Such as making foo able to write to file itself.
foo ---------> write to files on the server
Note: What i am asking for is explanation and why and so on, NOT THE CODES!
Note again: Is it possible for it to exit the limits with additional libraries?
Edit: So, if i added another library from another language like python, will it help to exit the limits?