Ho un caso d'uso in cui ho bisogno di creare dire due oggetti javascript & usa le loro proprietà l'una nell'altra. ad es. -
var Object1 = {
settings: {
property1: 'someValue',
property2: 'someValue'
}
}
var Object2 = {
foreignProperty: Object1.settings.property1;
}
Volevo sapere se è giusto usare un oggetto di riferimento per le impostazioni se so che userò molto la proprietà delle impostazioni. ad esempio-
var Object1Settings,
Object1 = {
settings: {
property1: 'someValue',
property2: 'someValue'
}
}
var Object1Settings = Object1.settings;
var Object2 = {
foreignProperty: Object1Settings.property1;
}
Questo approccio è accettabile in termini di giusti modi di codifica e amp; prestazioni?
Grazie