where to check mysql image version code example
Example 1: check postgres version
psql --version
Example 2: how to check chrome version in js
function getChromeVersion () {
var raw = navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);
return raw ? parseInt(raw[2], 10) : false;
}