In some documentation for Javascript I have seen strict mode enabled with single quotes as:
'use strict';
Yet in other documentation I have seen strict mode enabled with double quotes as:
"use strict";
What is the correct way to enable strict mode and why?
EDIT: This question is not asking can I use single quotes, but rather what the generally accepted style is (single quotes or double quotes) and why that style is preferred.