There's a pretty good explanation in the Apps Script Documentation, but the example deals with paragraphs.
Tables in Google Documents are made of TableRow objects filled with TableCell objects. You can think of a table as an array of arrays. In fact, you can use an array of arrays to create a table using the Body.appendTable() method.
TableCells have a merge() method that merges a cell with its preceding sibling cell. The text is joined with a newline.
The code for merging two cells would look something like this:
function mergeCellsExample() {
var cells = [
['First cell', 'Second cell'],
['First cell second row', 'Second cell second row']
];
var table = DocumentApp.create('Cell merge example').getBody().appendTable(cells);
var row = table.getRow(0);
var cell1 = row.getCell(0);
var cell2 = row.getCell(1);
Logger.log('Cell1 contents: %s', cell1.getText());
Logger.log('Cell2 contents: %s', cell2.getText());
var merged = cell2.merge();
Logger.log('Merged cell contents: %s', merged.getText());
Logger.log('Cell1 == Merged cell: %s', cell1.getText() == merged.getText());
Logger.log('Cell2 contents: %s', cell2.getText());
}