JQUERY WYSIWYG Éditeur Val ACF

/* You have to find your ACF field, find the textarea within the editor,
get that ID, then setContent using TinyMCE JS API that's built in to
WordPress: */
let description = "Some text!";
let f = acf.getField("your_field_key");
let tinyID = f.$el.find("textarea").attr("id");
let tinyInstance = tinyMCE.editors[tinyID];
tinyInstance.setContent(description);
Ugliest Unicorn