I have the following code in abc.jsp:
<%@page import="soundcap.Soundcap"%>
<%
Soundcap cfl = new Soundcap();
var sfl = cfl.playFile();
%>
I need the value of sfl in an external javascript file (jcode.js). How can I get this value (sfl) from jsp in javascript?