Created
December 12, 2015 02:54
-
-
Save Nik19872/a3e457cd833bf6f0ba38 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*1. самый дешевый телефон с самой большой памятью и черного цвета*/ | |
/*2. чем отличается розовый айфон о | |
*/ | |
var phones = [ | |
{model:'iPhone', | |
price: 5500, | |
color: 'black', | |
memory: '8GB'}, | |
{model:'iPhone', | |
price: 6500, | |
color: 'black', | |
memory: '16GB'}, | |
{model:'iPhone', | |
price: 7500, | |
color: 'black', | |
memory: '32GB'}, | |
{model:'meizu', | |
price: 2500, | |
color: 'black', | |
memory: '32GB'}, | |
{model:'meizu', | |
price: 1500, | |
color: 'black', | |
memory: '16GB'}, | |
{model:'meizu', | |
price: 1500, | |
color: 'pink', | |
memory: '32GB'}, | |
{model:'iPhone', | |
price: 6500, | |
color: 'pink', | |
memory: '16GB'} | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment