Window navigator.product Property
- পূর্ববর্তী পৃষ্ঠা platform
- পরবর্তী পৃষ্ঠা taintEnabled()
- একত্রিভূমিতে ফিরে যান Window Navigator
Definition and Usage
product
Property returns the browser engine (product name).
product
Properties are read-only.
Tip:Due to compatibility reasons, all modern browsers return "Gecko".
Example
Example 1
Get navigator.product:
let product = navigator.product;
Example 2
Display all navigator properties:
let text = "<p>Browser CodeName: " + navigator.appCodeName + "</p>" + "<p>Browser Name: " + navigator.appName + "</p>" + "<p>Browser Version: " + navigator.appVersion + "</p>" + "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>" + "<p>Browser Language: " + navigator.language + "</p>" + "<p>Browser Online: " + navigator.onLine + "</p>" + "<p>Platform: " + navigator.platform + "</p>" + "<p>User-agent header: " + navigator.userAgent + "</p>";
সিন্ট্যাক্স
navigator.product
ফলাফল
ধরন | বর্ণনা |
---|---|
স্ট্রিং | �্রาวজার ইঞ্জিন নাম |
ব্রাউজার সমর্থন
সমস্ত ব্রাউজারকে সমর্থন করা হয় navigator.product
:
Chrome | IE | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
Chrome | IE | Edge | Firefox | Safari | Opera |
সমর্থন | সমর্থন | সমর্থন | সমর্থন | সমর্থন | সমর্থন |
- পূর্ববর্তী পৃষ্ঠা platform
- পরবর্তী পৃষ্ঠা taintEnabled()
- একত্রিভূমিতে ফিরে যান Window Navigator