CKEditor 4 reached its End of Life (EOL) in June 2023. From then on, it will receive no more updates, new features, bug fixes, and security patches. Visit CKEditor 5 Docs for the actively supported CKEditor or check Extended Support Model.
Generic style command. It applies a specific style when executed.
var boldStyle = new CKEDITOR.style( { element: 'strong' } );
// Register the "bold" command, which applies the bold style.
editor.addCommand( 'bold', new CKEDITOR.styleCommand( boldStyle ) );