Postgres JSONB Array Push New Element

UPDATE jsontesting
SET jsondata = jsondata || '["newString"]'::jsonb
WHERE id = 7;
Envious Earthworm