js

This tag executes JavaScript

Created by: hackvertor
Installed 7 times

Category: Convert

Created on: Friday, September 13, 2024 at 7:15:42 AM

Updated on: Saturday, October 12, 2024 at 11:26:44 AM

This is a built in tag
Tag arguments
[]
Code
class js {
  encode(input) {
     try {
        return String(eval(input));
     } catch(e){
        return String(e);
     }
  }
}