'Syntax highlighting of javascript for ColdFusion Builder

How can we edit or install JavaScript syntax highlighting for ColdFusion Builder Version: 3.2.1?

Let, const and the compact arrow function aren't highlighted.

function foo(){
    const x = "no highlighting";
    let x = "no highlighting";

    const materials = [
      'Hydrogen',
      'Helium',
      'Lithium',
      'Beryllium'
    ];
    
    console.log(materials.map(material => material.length));
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source