Creates a new JSValue representing a number.
pub fn jsvalue_from_f64() {
let js_f64=JsValue::from_f64(5.0);
web_sys::console::log_2(&"Get Value:%s".into(),&js_f64);
}
pub fn from_f64(n: f64) -> JsValue