KVKuruva Vinayinoden.hashnode.dev·Mar 3, 2024 · 5 min readServlets and JSPServlets A servlet is a Java programming language class that is used to extend the capabilities of servers that host applications accessed by means of a request-response programming model. <!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <ti...00
KVKuruva Vinayinoden.hashnode.dev·Mar 2, 2024 · 4 min readJavaScriptEverything in JavaScript is done in Execution context which consist of memory component(Environment variables) and the code component. The separate Execution context is create for each function usage. After completing of running code the data will be...00