
Hi @Asjad Ali ,
The changeLog of appended column is stored in the history of list item, you could get the versions of the listitem to get the value of appended column. Below is my demo for you:
var clientContext = new SP.ClientContext();
var oList = clientContext.get_web().get_lists().getByTitle('List1');
this.oListItem = oList.getItemById(1);
clientContext.load(oListItem,'Versions');
clientContext.executeQueryAsync(onsuccess, onfailed);
function onsuccess() {
var versions=oListItem.get_versions();
versions.get_data().forEach(itemVersion=>{
console.log(itemVersion.get_item('Column1'));
})
}
function onfailed(sender, args) {
console.log('Failed' + args.get_message() + '\n' + args.get_stackTrace());
}
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.