Answers for "know your chrome version"

0

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;
}
Posted by: Guest on April-28-2020
21

my chrome version

How to seach your Chrome version: 
1. Click the three dots at the top right of chrome.
2. Help -> About Google Chrome.
3. That's it :D
Posted by: Guest on April-08-2021

Browse Popular Code Answers by Language