{"id":16971,"date":"2026-08-10T12:27:43","date_gmt":"2026-08-10T12:27:43","guid":{"rendered":"https:\/\/nokobox.com\/index.php\/item\/winsoft-jsengine-v4-5-delphi-6-d11\/"},"modified":"2026-08-10T12:27:43","modified_gmt":"2026-08-10T12:27:43","slug":"winsoft-jsengine-v4-5-delphi-6-d11","status":"publish","type":"digital_item","link":"https:\/\/nokobox.com\/index.php\/item\/winsoft-jsengine-v4-5-delphi-6-d11\/","title":{"rendered":"WINSOFT JSEngine v4.5 Delphi 6-D11"},"content":{"rendered":"<div class=\"w-post-elm post_content\">\n<h2>Description<\/h2>\n<p dir=\"ltr\">Winsoft JSEngine, including powerful engines, JavaScript, Delphi, C ++ Builder can be considered.<\/p>\n<h3><strong>Features and technical Winsoft JSEngine :<br \/><\/strong><\/h3>\n<ul>\n<li>Benefit from the powerful engine, Microsoft ChakraCore JavaScript<\/li>\n<li>Support of Windows 32-bit and 64-bit<\/li>\n<li>Supplied for Delphi versions 6 to 10.1 and Lazarus<\/li>\n<li>Provide the source code to accompany the product<\/li>\n<li>Ability to distribute royalty-free the library in applications<\/li>\n<\/ul>\n<p dir=\"ltr\">Version 3.0<\/p>\n<ul>\n<li style=\"text-align: left\">updated ChakraCore DLL libraries<\/li>\n<li style=\"text-align: left\">updated ChakraCore declarations<\/li>\n<\/ul>\n<p dir=\"ltr\">To download the Demo software from <a href=\"https:\/\/www.winsoft.sk\/download\/jsenginedemo.zip\">here<\/a> apply.<\/p>\n<h3>Examples<\/h3>\n<div class=\"block\" dir=\"ltr\">\n<p>Is ECMAScript 2015 (ES6) examples<\/p>\n<p><code><br \/>\n<span class=\"comment\">\/\/ block<\/span><br \/>\n{<br \/>\n<span class=\"keyword\">const<\/span> a = 1 <span class=\"comment\">\/\/ block-scoped constant<\/span><br \/>\n<span class=\"keyword\">let<\/span> b = 2 <span class=\"comment\">\/\/ block-scoped variable<\/span><br \/>\n}<\/code><\/p>\n<p><span class=\"comment\">\/\/ template literals<\/span><br \/><span class=\"keyword\">function<\/span> complexToString(a, b) {<br \/><span class=\"keyword\">return<\/span> <span class=\"string\">`${a} + ${b}i`<\/span><br \/>}<\/p>\n<p>complexToString(1, 2)<\/p>\n<p><span class=\"comment\">\/\/ multi-line strings<\/span><br \/><span class=\"keyword\">let<\/span> html = <span class=\"string\">`<br \/>a &lt;div&gt;<br \/>Hello<br \/>&lt;\/div&gt;`<\/span><\/p>\n<p><span class=\"comment\">\/\/ destructing assignment<\/span><br \/><span class=\"keyword\">const<\/span> [a, c , ] = [1, 2, 3, 4]<span class=\"keyword\">const<\/span> {a, c} = {a: 1, b: 2, c: 3, d: 4}<\/p>\n<p><span class=\"comment\">\/\/ class<\/span><br \/><span class=\"keyword\">class<\/span> Person {<br \/><span class=\"keyword\">constructor<\/span>(name) {<br \/><span class=\"keyword\">this<\/span>.name = name<br \/>}<\/p>\n<p>hello() {<br \/><span class=\"keyword\">return<\/span> <span class=\"string\">\u2018Hello, \u2018<\/span> + <span class=\"keyword\">this<\/span>.name + <span class=\"string\">\u2018!\u2019<\/span><br \/>}<br \/>}<\/p>\n<p><span class=\"keyword\">const<\/span> Jon = <span class=\"keyword\">new<\/span> Person(<span class=\"string\">\u2018Erik\u2019<\/span>)<br \/>erik.name<br \/>erik.hello()<\/p>\n<p><span class=\"comment\">\/\/ inheritance<\/span><br \/><span class=\"keyword\">class<\/span> Student <span class=\"keyword\">extends<\/span> Person {<br \/>hello() {<br \/><span class=\"keyword\">return<\/span> <span class=\"string\">\u2018Hello student \u2018<\/span> + <span class=\"keyword\">this<\/span>.name + <span class=\"string\">\u2018!\u2019<\/span><br \/>}<br \/>}<\/p>\n<p><span class=\"keyword\">const<\/span> patrik = <span class=\"keyword\">new<\/span> Student(<span class=\"string\">\u2018Patrik\u2019<\/span>)<br \/>patrik.hello()<\/p>\n<p><span class=\"comment\">\/\/ arrow functions<\/span><br \/>[1, 2, 3].map(value =&gt; value + 1)<\/p>\n<p><span class=\"keyword\">const<\/span> increment = value =&gt; value + 1<br \/>increment(1)<\/p>\n<p><span class=\"comment\">\/\/ for of<\/span><br \/><span class=\"keyword\">let<\/span> sum = 0<br \/><span class=\"keyword\">for<\/span> (<span class=\"keyword\">const<\/span> element <span class=\"keyword\">of<\/span> [1, 2, 3])<br \/>sum += element<\/p>\n<p><span class=\"comment\">\/\/ default parameters<\/span><br \/><span class=\"keyword\">function<\/span> hello(name = \u2018Erik\u2019) {<br \/><span class=\"keyword\">return<\/span> <span class=\"string\">\u2018Hello, \u2018<\/span> + name + <span class=\"string\">\u2018!\u2019<\/span><br \/>}<\/p>\n<p><span class=\"comment\">\/\/ rest parameters<\/span><br \/><span class=\"keyword\">function<\/span> restParams(first, \u2026rest) {<br \/><span class=\"keyword\">return<\/span> rest<br \/>}<\/p>\n<p><span class=\"comment\">\/\/ spread operator<\/span><br \/>Math.max(1, 2, 3)<br \/>Math.max(\u2026[1, 2, 3])<\/p>\n<p><span class=\"keyword\">const<\/span> a = [1, 2, 3]<span class=\"keyword\">const<\/span> b = [4, 5, 6]<span class=\"keyword\">const<\/span> c = [\u2026a, \u2026b]\n<\/p>\n<p>Is ECMAScript 2016, examples<\/p>\n<p><code><br \/>\n2 ** 3 <span class=\"comment\">\/\/ exponentiation operator<\/span><br \/>\n<\/code><\/p>\n<p>Is ECMAScript 2017 examples<\/p>\n<p><code><br \/>\nObject.values({a: 1, b: 2});<br \/>\nObject.entries({a: 1, b: 2});<br \/>\n<\/code><\/p>\n<p>Web Assembly examples<\/p>\n<p><code><br \/>\n<span class=\"keyword\">var<\/span> memory = <span class=\"keyword\">new<\/span> WebAssembly.Memory({initial: 1, maximum: 10});<br \/>\n<span class=\"keyword\">var<\/span> array = <span class=\"keyword\">new<\/span> Uint32Array(memory.buffer);<\/code><\/p>\n<p>array[10] = 1;<br \/>array[10];<\/p>\n<\/div>\n<h3>System requirements<strong> Winsoft JSEngine<\/strong><\/h3>\n<p dir=\"ltr\">for Delphi 7, 2007, 2009, 2010, XE, XE2, XE3, XE4, XE5, XE6, XE7, XE8, 10, Seattle, 10.1 Berlin, 10.2, Tokyo<\/p>\n<h3>Images<\/h3>\n<h3>Installation guide<\/h3>\n<p dir=\"ltr\">Of the program from the functions library it the use we. For installation not only have it\u2019s path in the library, Delphi, introduce.<\/p>\n<h3>Download link<\/h3>\n<p dir=\"ltr\"><a href=\"https:\/\/dl.downloadly.ir\/Files\/Software\/WinSoft_JSEngine_v4.5_for_Delphi_6-11_Downloadly.ir.rar?nocache=1785937309\">Download WinSoft JSEngine v4.5 for Delphi &amp; C++ Builder 6-11<\/a><\/p>\n<h5>Password file(s): <a>www.downloadly.ir<\/a><\/h5>\n<h3>File size<\/h3>\n<p dir=\"ltr\">8.29 MB<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Description Winsoft JSEngine, including powerful engines, JavaScript, Delphi, C ++ Builder can be considered. Features and technical Winsoft JSEngine : Benefit <\/p>\n","protected":false},"author":1,"template":"","dgi_category":[134365],"dgi_tag":[136360,136361,136362,136363,136364],"class_list":["post-16971","digital_item","type-digital_item","status-publish","has-post-thumbnail","hentry","dgi_category-programming","dgi_tag-winsoft-jsengine","dgi_tag-winsoft-jsengine-crack","dgi_tag-winsoft-jsengine-download","dgi_tag-winsoft-jsengine-free","dgi_tag-winsoft-jsengine-free-download"],"_links":{"self":[{"href":"https:\/\/nokobox.com\/index.php\/wp-json\/wp\/v2\/digital_item\/16971","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nokobox.com\/index.php\/wp-json\/wp\/v2\/digital_item"}],"about":[{"href":"https:\/\/nokobox.com\/index.php\/wp-json\/wp\/v2\/types\/digital_item"}],"author":[{"embeddable":true,"href":"https:\/\/nokobox.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/nokobox.com\/index.php\/wp-json\/wp\/v2\/digital_item\/16971\/revisions"}],"wp:attachment":[{"href":"https:\/\/nokobox.com\/index.php\/wp-json\/wp\/v2\/media?parent=16971"}],"wp:term":[{"taxonomy":"dgi_category","embeddable":true,"href":"https:\/\/nokobox.com\/index.php\/wp-json\/wp\/v2\/dgi_category?post=16971"},{"taxonomy":"dgi_tag","embeddable":true,"href":"https:\/\/nokobox.com\/index.php\/wp-json\/wp\/v2\/dgi_tag?post=16971"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}